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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8c 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.hero {
    background: linear-gradient(135deg, #0f2137 0%, #1a365d 50%, #2d5a8c 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,200 Q300,100 600,200 T1200,200 L1200,600 L0,600 Z" fill="%23ffffff" opacity="0.05"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #ffd700;
    color: #1a365d;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #ffffff;
    transition: all 0.3s;
    margin-left: 15px;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #1a365d;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-dark {
    background: linear-gradient(135deg, #1a365d 0%, #0f2137 100%);
    color: #ffffff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.story-block {
    max-width: 750px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
}

.story-block p {
    margin-bottom: 25px;
}

.story-block strong {
    color: #1a365d;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #fff5e1 0%, #ffe4b5 100%);
    border-left: 5px solid #ffd700;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a365d;
}

.problem-section {
    background: #fff5f5;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
}

.problem-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: #ffffff;
    border-left: 4px solid #dc3545;
    border-radius: 6px;
    font-size: 18px;
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.solution-card p {
    font-size: 16px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #1a365d;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a365d;
}

.service-card .price {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 16px;
}

.service-card ul li:before {
    content: '✓ ';
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.service-select-btn {
    width: 100%;
    padding: 15px;
    background: #1a365d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.service-select-btn:hover {
    background: #2d5a8c;
    transform: scale(1.02);
}

.service-select-btn.selected {
    background: #28a745;
}

.testimonials {
    margin-top: 50px;
}

.testimonial {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #ffd700;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1a365d;
    font-style: normal;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 12px;
    margin-top: 60px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #218838;
    transform: scale(1.02);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a365d;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    display: inline-block;
    background: #ffd700;
    color: #1a365d;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
}

.inline-cta {
    text-align: center;
    margin: 50px 0;
}

.inline-cta a {
    display: inline-block;
    background: #1a365d;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.inline-cta a:hover {
    background: #2d5a8c;
    transform: scale(1.05);
}

.urgency-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 20px;
    font-weight: 600;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
}

footer {
    background: #0f2137;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffd700;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #28a745;
    color: #ffffff;
}

.cookie-reject {
    background: #6c757d;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

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

.about-content {
    margin-top: 50px;
}

.about-section {
    margin-bottom: 50px;
}

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

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a365d;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
}

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

.contact-info {
    margin-top: 50px;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a365d;
}

.contact-item p {
    font-size: 18px;
    color: #2c3e50;
}

.legal-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8c 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.legal-content {
    margin-top: 50px;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-hero {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 22px;
    margin-bottom: 20px;
}

.thanks-content .selected-service {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

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

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .solution-card,
    .service-card {
        min-width: 100%;
    }

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