* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 40px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 325px;
    height: auto;
}

.header-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-link {
    color: #222222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-link:hover {
    background-color: #e5e5e5;
    text-decoration: none;
}

.header-icon {
    width: 22.5px;
    height: 22.5px;
    fill: currentColor;
}

/* Intro */
.intro {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.intro h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0088c2;
    margin-bottom: 20px;
    
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.1rem;
    color: #222222;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.8;
    font-weight: 600;
}

.intro-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* Services */
.services {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.services h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;    
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 30px 25px;
    background-color: #ffffff;
    border-radius: 8px;
    flex: 0 0 calc(25% - 22.5px);
    min-width: 0;
    max-width: none;
}

.service-icon {
    width: 2.625rem;
    height: 2.625rem;
    margin: 0 auto 15px;
    color: #0088c2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.9rem;
    color: #222222;
    line-height: 1.5;
    margin: 0;
}

.coming-soon {
    display: block;
    font-size: 0.75rem;
    color: #0088c2;
    font-weight: 400;
    margin-top: 5px;
    font-style: italic;
}

/* Clients */
.clients {
    padding: 80px 20px 40px 20px;
    background-color: #ffffff;
}

.clients h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.clients-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 35px 50px;
    margin-bottom: 30px;
}

.client-logo {
    max-width: 145px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.clients-disclaimer {
    font-size: 12px;
    color: #999999;
    margin-top: 20px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 0 20px 50px;
    background-color: #ffffff;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.testimonial-quote {
    margin: 0;
    text-align: center;
    text-wrap: balance;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-quote cite {
    font-size: 0.95rem;
    color: #222222;
    font-style: normal;
    font-weight: 500;
}

/* About */
.about {
    padding: 40px 20px 80px 20px;
    background-color: #ffffff;
}

.bio-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.bio-image {
    flex-shrink: 0;
}

.bio-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.bio-text {
    flex: 1;
}

.about h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bio-short p,
.bio-full p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more-btn {
    background: none;
    border: none;
    color: #0088c2;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #006ba3;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.contact h2 {
    font-size: 2.875rem;
    font-weight: 800;
    color: #0088c2;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #222222;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0088c2;
}

.submit-btn {
    width: 100%;
    background-color: #0088c2;
    color: #ffffff;
    padding: 14px 25px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #006ba3;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.submit-btn:disabled:hover {
    background-color: #cccccc;
}

.form-success {
    text-align: center;
    padding: 30px;
    background-color: #f0f8ff;
    border: 2px solid #0088c2;
    border-radius: 4px;
    margin-top: 20px;
}

.form-success p {
    font-size: 1.1rem;
    color: #0088c2;
    font-weight: 500;
    margin: 0;
}

.contact-alternative {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-alternative p {
    color: #222222;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.contact-link {
    color: #0088c2;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #006ba3;
    text-decoration: underline;
}

.contact-separator {
    color: #cccccc;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-links {
        flex-direction: column;
        gap: 15px;
    }

    .intro h1 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .services-grid {
        gap: 20px;
    }

    .service-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
        max-width: 200px;
    }

    .bio-content {
        flex-direction: column;
        gap: 30px;
    }

    .bio-photo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 25px;
    }
}
