body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #111;
    color: #e5c77a;
}
.hero {
    text-align: center;
    padding: 40px 20px 20px 20px;
    background: #000;
}
.logo {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #222;
    padding: 10px;
}
.brand-name {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    font-weight: bold;
    color: #e5c77a;
}
.tagline {
    font-size: 1.3rem;
    color: #fff9;
    margin-bottom: 10px;
}

.process {
    background: #191919;
    padding: 40px 0 20px 0;
    text-align: center;
}
.process h2 {
    color: #e5c77a;
    margin-bottom: 30px;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.step {
    background: #222;
    border-radius: 14px;
    padding: 18px 22px;
    width: 180px;
    box-shadow: 0 2px 7px #0005;
    margin-bottom: 14px;
}
.step i {
    font-size: 2.3rem;
    color: #e5c77a;
    margin-bottom: 12px;
}
.step p {
    margin: 0;
    color: #fff;
}

.appointment {
    background: #111;
    padding: 40px 0 16px 0;
    text-align: center;
}
.appointment h2 {
    color: #e5c77a;
    margin-bottom: 16px;
}
#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
#contactForm input {
    width: 280px;
    max-width: 90vw;
    padding: 11px 14px;
    border-radius: 7px;
    border: none;
    margin-bottom: 2px;
    font-size: 1.1rem;
    outline: none;
    background: #222;
    color: #fff;
    box-sizing: border-box;
}
#contactForm input::placeholder {
    color: #e5c77a;
    opacity: 0.8;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 18px;
}
.contact-buttons button {
    background: #e5c77a;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
}
.contact-buttons button i {
    font-size: 1.4rem;
}
.contact-buttons button:hover {
    background: #ffd700;
    color: #000;
}
.or-message {
    color: #fff;
    margin: 22px 0 6px 0;
    font-size: 1.08rem;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 30px 0;
}
.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #e5c77a;
    font-size: 1.15rem;
}
.contact-link i {
    font-size: 3.2rem;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.contact-link:hover i {
    color: #fff8dc;
}
.contact-label {
    font-size: 1rem;
    color: #fff;
    margin-top: 2px;
}

footer {
    text-align: center;
    padding: 18px 0 9px 0;
    background: #191919;
    color: #e5c77a;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 650px) {
    .steps {
        flex-direction: column;
        gap: 12px;
    }
    .step {
        width: 95vw;
        max-width: 320px;
        margin: 0 auto 10px auto;
    }
    .contact {
        flex-direction: column;
        gap: 16px;
        margin: 22px 0;
    }
    .contact-link i {
        font-size: 2.3rem;
    }
}
