* {
    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;
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #1a5490 0%, #2d6ba8 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #e8f2fa;
    margin-bottom: 36px;
    line-height: 1.5;
}

.btn-cta {
    display: inline-block;
    background: #ffffff;
    color: #1a5490;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

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

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    position: absolute;
    top: 0;
    right: 0;
}

.intro-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.intro-section h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 32px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.services-preview {
    padding: 100px 40px;
    background: #ffffff;
}

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

.section-header-left {
    margin-bottom: 60px;
}

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

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

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 24px;
}

.btn-service {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #134170;
}

.value-section {
    padding: 100px 40px;
    background: #1a5490;
    color: #ffffff;
}

.value-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.value-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8f2fa;
}

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

.container-medium {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.form-header p {
    font-size: 18px;
    color: #6c757d;
}

.main-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.form-row .form-group {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background: #1a5490;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #134170;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #e9ecef;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #adb5bd;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
}

.footer-bottom p {
    color: #adb5bd;
    font-size: 14px;
}

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

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

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

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

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

.btn-primary {
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #134170;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #2c3e50;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 16px;
}

.thanks-content .btn-cta {
    margin-top: 32px;
    background: #1a5490;
    color: #ffffff;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

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

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

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

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

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

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

.contact-page {
    padding: 80px 40px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.contact-details {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #1a5490;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.services-header p {
    font-size: 20px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 50px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.service-features {
    margin: 24px 0;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin: 24px 0;
}

.about-page {
    padding: 80px 40px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.about-intro {
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-sections {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.about-text {
    flex: 1;
}

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

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

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

    .nav-menu {
        gap: 20px;
    }

    .service-block,
    .service-block.reverse,
    .about-section,
    .about-section.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

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

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