body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: #faf8f7;
    color: #222;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.1)), #fff;
    padding: 60px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.hero-text {
    max-width: 550px;
}
.hero-section h1 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: #252d39;
    font-weight: 700;
}
.subheadline {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: #555;
}
.btn {
    display: inline-block;
    padding: 13px 28px;
    margin: 10px 10px 10px 0;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: .2s all;
}
.primary {
    background: #2965c9;
    color: #fff;
    border: none;
}
.primary:hover { background: #19407d; }
.secondary {
    background: #f2f3f7;
    color: #2965c9;
    border: 2px solid #2965c9;
}
.secondary:hover { background: #e7f0fc; color: #19407d;}
.trust-signals {
    font-size: 1rem;
    margin-top: 18px;
    color: #444;
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
}
.hero-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(45,66,120,.09);
    border: 4px solid #eaeaea;
}

/* Values */
.values-section {
    background: #f9fbff;
    padding: 60px 0 30px 0;
    text-align: center;
}
.values-section h2 { font-size: 2.2rem; margin-bottom: 8px;}
.value-subheadline {font-size: 1.1rem; margin-bottom: 34px; color:#555;}
.values-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.value {
    background: #fff;
    padding: 28px 18px 18px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 14px rgba(45,66,120,.07);
    max-width: 290px;
    flex: 1;
}
.value .icon {
    width: 48px;
    margin-bottom: 15px;
}
.center-btn { margin: 0 auto 20px auto; display:block; }
.comparison {margin:36px auto 3px auto; max-width:500px;}
.comparison img { width:100%; border-radius:8px; border:2px solid #ddd;}
.comparison span {display:block; color:#888; font-size:0.93rem; margin-top:5px;}

/* Portfolio */
.portfolio-section {
    padding: 50px 0 35px 0;
    background: #fff;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 32px;
}
.portfolio-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 2px solid #eee;
}
/* Process */
.process-section {
    background: #eaf0fb;
    padding: 55px 0 35px 0;
}
.process-section h2 {text-align:center;}
.process-steps {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 38px;
    text-align: center;
}
.step {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(80,100,180,.07);
    max-width: 230px;
    flex: 1;
    min-width: 170px;
}
.step-number {
    background: #2965c9;
    color: #fff;
    font-size: 1.2rem;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Testimonials */
.testimonials-section {
    background: #f9fbff;
    padding: 60px 0 40px 0;
}
.testimonials-section h2 {text-align: center;}
.testimonials {
    display: flex;
    justify-content: center;
    gap: 33px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.testimonial {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(45,66,120,.05);
    padding: 32px 30px 18px 30px;
    font-style: italic;
    max-width: 330px;
}
.client {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #2965c9;
    font-style: normal;
}

/* Contact */
.contact-section {
    padding: 50px 0;
    background: #fff;
}
.contact-section h2 { text-align: center;}
.contact-section p { text-align: center; }
.contact-form {
    max-width:420px; margin:34px auto 10px auto;
    background: #f6f8fd;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(36, 80, 145, 0.04);
}
.form-row { margin-bottom: 18px;}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 10px;
    border-radius: 4px;
    border: 1.2px solid #cfd8e3;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form button {
    width: 100%;
    margin-top: 10px;
}
.contact-details {
    margin: 25px auto 0 auto;
    text-align: center;
    color: #2a3050;
    font-size: 1.07rem;
}

footer {
    background: #2a3050;
    color: #f8f8ff;
    font-size: 1rem;
    text-align: center;
    padding: 22px 0;
    letter-spacing: 0.02em;
    margin-top: 0;
}

@media (max-width: 900px) {
    .hero-content, .values-grid, .process-steps, .testimonials {
        flex-direction: column;
        align-items: center;
    }
    .values-grid, .process-steps {
        gap: 18px;
    }
    .hero-image img { max-width: 350px;}
}
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}
.faq-item {
    max-width: 800px;
    margin: 0 auto 24px auto;
    padding: 0 20px;
}
.faq-item h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 8px;
}
.faq-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

