body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e3e9f0 0%, #f4f4f4 100%);
    color: #222;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #232946;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
}
nav .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
.nav-btn, .call-btn {
    background: #eebbc3;
    color: #232946;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    font-weight: 500;
}
.nav-btn:hover, .call-btn:hover {
    background: #d4939d;
    color: #fff;
}
.hero {
    background: linear-gradient(120deg, #232946 60%, #eebbc3 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.main-btn, .call-btn {
    background: #eebbc3;
    color: #232946;
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 0.2rem;
    transition: background 0.2s;
    text-decoration: none;
    font-weight: 600;
}
.main-btn:hover, .call-btn:hover {
    background: #d4939d;
    color: #fff;
}
main {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
h2 {
    color: #232946;
    margin-top: 2rem;
}
#services ul {
    list-style: disc inside;
    padding-left: 1rem;
}
#request form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}
#request input, #request textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
#request button {
    background: #232946;
    color: #fff;
    border: none;
    padding: 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}
#request button:hover {
    background: #eebbc3;
    color: #232946;
}
#testimonials {
    margin-top: 2rem;
    text-align: center;
}
#testimonials blockquote {
    background: #f0f8ff;
    border-left: 4px solid #eebbc3;
    margin: 1rem auto;
    padding: 1.2rem 1rem;
    border-radius: 6px;
    font-style: italic;
    max-width: 500px;
    color: #232946;
}
#testimonials span {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #232946;
}
.testimonial-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.testimonial-btn {
    background: #232946;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.testimonial-btn:hover {
    background: #eebbc3;
    color: #232946;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}
.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}
.close {
    position: absolute;
    top: 10px; right: 16px;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
}
.close:hover {
    color: #232946;
}
footer {
    text-align: center;
    padding: 1rem;
    background: #eaeaea;
    color: #555;
    border-radius: 0 0 12px 12px;
    margin-top: 2rem;
}
a {
    color: #1a73e8;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.service-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 220px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(34,41,70,0.16);
    border: 1.5px solid #eebbc3;
}
.service-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}
.service-card h3 {
    margin: 0.5rem 0 0.3rem 0;
    color: #232946;
    font-size: 1.1rem;
}
.service-card p {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 0.7rem;
}
.service-price {
    background: #eebbc3;
    color: #232946;
    font-weight: bold;
    border-radius: 4px;
    padding: 0.4rem 1rem;
    font-size: 1.05rem;
    margin-top: auto;
}
.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.team-member {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 180px;
    padding: 1rem;
    text-align: center;
}
.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.7rem;
}
.team-member h3 {
    margin: 0.5rem 0 0.2rem 0;
    color: #232946;
    font-size: 1.05rem;
}
.team-member p {
    font-size: 0.95rem;
    color: #444;
}
.contact-info {
    margin-bottom: 2rem;
}
.contact-info p {
    margin: 0.3rem 0;
}
/* Contact Form Styles */
#contactForm {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    max-width: 450px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

#contactForm label {
    font-weight: 500;
    color: #232946;
    margin-bottom: 0.2rem;
}

#contactForm input,
#contactForm textarea {
    padding: 0.7rem;
    border: 1.5px solid #eebbc3;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border: 1.5px solid #232946;
    box-shadow: 0 0 0 2px #eebbc3;
}

#contactForm button {
    background: #232946;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

#contactForm button:hover {
    background: #eebbc3;
    color: #232946;
}
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s;
}
.service-card-link:focus,
.service-card-link:hover {
    outline: none;
    transform: translateY(-4px) scale(1.02);
}
.service-landing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(120deg, #232946 60%, #eebbc3 100%);
    color: #fff;
    border-radius: 12px;
    padding: 2.5rem 1rem 2rem 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(34,41,70,0.10);
}
.service-landing-header h1 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}
.service-landing-img {
    width: 100%;
    max-width: 420px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.2rem 0 0.7rem 0;
    box-shadow: 0 2px 8px rgba(34,41,70,0.10);
    border: 3px solid #eebbc3;
}
.service-landing-content {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    text-align: center;
}
.service-landing-content p {
    font-size: 1.08rem;
    color: #232946;
    margin-bottom: 1.2rem;
}
.service-landing-content .service-price {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}
.service-landing-content .main-btn {
    margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
    nav, .hero-actions, .testimonial-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    main {
        padding: 1rem;
    }
    #contactForm {
        padding: 1rem 0.5rem;
    }
}
@media (max-width: 700px) {
    .service-landing-header, .service-landing-content {
        padding: 1.2rem 0.5rem;
    }
    .service-landing-img {
        height: 140px;
    }
}
@media (max-width: 900px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
        max-width: 350px;
    }
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        width: 90%;
        max-width: 300px;
    }
}
