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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

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

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a365d;
}

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-accept {
    background: #2d6a4f;
    color: #fff;
}

.btn-accept:hover {
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    transform: translateY(-2px);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2d6a4f;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section,
.services-overview,
.pricing-section,
.testimonials,
.disclaimer-section {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a365d;
}

.split-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
}

.form-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a365d;
}

.service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #1a365d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.pricing-section {
    background: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a365d;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.pricing-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #1a365d;
}

.pricing-card p {
    padding: 0 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.price {
    padding: 0 20px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
}

.testimonials {
    background: #fff;
}

blockquote {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #1a365d;
    margin-bottom: 24px;
    border-radius: 8px;
}

blockquote p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 12px;
    color: #333;
}

cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.disclaimer-section {
    background: #fffbeb;
    padding: 40px 0;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    color: #bbb;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #1a365d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s;
}

.thanks-content a:hover {
    transform: translateY(-2px);
}

.about-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a365d;
}

.services-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-section {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 12px;
}

.service-content .service-price {
    font-size: 24px;
    color: #2d6a4f;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #666;
}

.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    color: #1a365d;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a365d;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: #1a365d;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .split-left {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }
}
