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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: all 0.3s ease;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #4a5568;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2c5282;
}

.ad-notice {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background: #edf2f7;
    border-radius: 4px;
}

.hero-split {
    background: #f7fafc;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: #cbd5e0;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2a4365;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,82,130,0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: #e2e8f0;
    padding: 0;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.intro-text {
    flex: 1;
    padding: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-grid {
    background: #f7fafc;
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-image {
    background: #cbd5e0;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-info p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.btn-select {
    background: #2c5282;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
}

.btn-select:hover {
    background: #2a4365;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    align-items: stretch;
}

.process-text {
    flex: 1.2;
    padding: 4rem;
    background: #edf2f7;
}

.process-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    min-width: 60px;
}

.step h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

.process-image {
    flex: 0.8;
    background: #cbd5e0;
}

.process-image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.form-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.btn-submit {
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #2a4365;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    align-items: center;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-image {
    flex: 1;
    background: #e2e8f0;
}

.trust-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.trust-content {
    flex: 1;
    padding: 4rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.testimonial {
    background: #f7fafc;
    padding: 2rem;
    border-left: 4px solid #2c5282;
    margin-bottom: 2rem;
}

.testimonial p {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.cta-final {
    background: #2c5282;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    background: #ffffff;
    color: #2c5282;
    padding: 1.25rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #cbd5e0;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-accept {
    background: #2c5282;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2a4365;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-hero {
    background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-split,
.values-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    align-items: center;
    gap: 4rem;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.about-text,
.values-text {
    flex: 1;
    padding: 2rem;
}

.about-text h2,
.values-text h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-text p,
.values-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image,
.values-image {
    flex: 1;
    background: #e2e8f0;
}

.about-image img,
.values-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.team-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: #f7fafc;
    text-align: center;
    border-radius: 8px;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.cta-simple {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
}

.cta-simple h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-secondary:hover {
    background: #2a4365;
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin-bottom: 5rem;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detail-card.reverse .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #cbd5e0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2d3748;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
}

.pricing-note {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: #f7fafc;
}

.pricing-note h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.factor {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.factor h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.factor p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-split {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.email-text {
    color: #2d3748;
    font-weight: 500;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #edf2f7;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2d3748;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5282;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2a4365;
}

.btn-secondary {
    background: transparent;
    color: #2c5282;
    border: 2px solid #2c5282;
}

.btn-secondary:hover {
    background: #f7fafc;
}

.legal-page {
    padding: 3rem 2rem 6rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.update-date {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c5282;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2a4365;
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-split,
    .process-split,
    .trust-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split,
    .form-container-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .values-split.reverse,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .factor {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .hero-text,
    .intro-text,
    .process-text,
    .trust-content,
    .about-text,
    .values-text {
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .page-hero h1,
    .about-text h2,
    .values-text h2,
    .trust-content h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}