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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
}

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.hero-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    z-index: 2;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 650px;
    opacity: 0.95;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.intro-block {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a5490;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview {
    padding: 120px 20px;
    background: #ffffff;
}

.section-header-offset {
    max-width: 700px;
    margin: 0 0 80px 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 19px;
    color: #6c757d;
}

.service-cards-stacked {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.card-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-details {
    flex: 1;
}

.card-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a5490;
}

.card-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 32px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background: #134072;
    transform: translateY(-1px);
}

.trust-indicators {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f0f4f8, #ffffff);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-indicators h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-item {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #1a5490;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: #1a5490;
}

.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a5490 0%, #0f3a6f 100%);
    text-align: center;
}

.cta-inner h2 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-1px);
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #229954;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
    transform: translateY(-1px);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #ecf0f1;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

.legal-page {
    padding: 80px 20px;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a5490;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #dee2e6;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-content .service-selected {
    font-size: 20px;
    font-weight: 600;
    color: #1a5490;
    margin: 24px 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thanks-content a:hover {
    background: #134072;
    transform: translateY(-1px);
}

.about-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a5490 0%, #0f3a6f 100%);
    color: #ffffff;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    max-width: 1000px;
    margin: 0 auto 80px;
}

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

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 10px;
    border-top: 4px solid #1a5490;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.contact-page {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-item {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a5490;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.services-page {
    padding: 80px 20px;
}

.services-header {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header p {
    font-size: 19px;
    color: #6c757d;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-item h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a5490;
}

.service-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .values-grid {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }
}