* {
    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: #2c3e50;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.center {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 280px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: #229954;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

.nav-menu a:hover {
    color: #3498db;
}

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52,152,219,0.85), rgba(46,204,113,0.75));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

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

.hero-content p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.btn-primary.large {
    padding: 20px 50px;
    font-size: 19px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

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

.btn-text {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: #2980b9;
    transform: translateX(4px);
}

.intro-section {
    padding: 100px 0;
}

.intro-text {
    font-size: 28px;
    line-height: 1.7;
    color: #2c3e50;
    text-align: center;
    font-weight: 300;
}

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

.trust-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
}

.trust-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-card p {
    color: #555;
    line-height: 1.7;
}

.story-section {
    padding: 120px 0;
}

.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.bg-alternate {
    background: #f8f9fa;
}

.bg-dark {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

.bg-dark h2 {
    color: #fff;
}

.bg-dark p {
    color: rgba(255,255,255,0.9);
}

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

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

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

.section-header p {
    font-size: 20px;
    color: #666;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 32px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #3498db;
    box-shadow: 0 8px 30px rgba(52,152,219,0.15);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    color: #666;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 220px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.price-detail {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.btn-select {
    padding: 12px 28px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-section {
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

.process-section {
    padding: 100px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
    opacity: 0.3;
}

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

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

.coverage-section {
    padding: 100px 0;
}

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

.coverage-content {
    flex: 1;
}

.coverage-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.coverage-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.coverage-list {
    list-style: none;
    margin-top: 32px;
}

.coverage-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.coverage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.coverage-image {
    flex: 1;
}

.coverage-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.booking-section {
    padding: 100px 0;
}

.booking-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.booking-form {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
}

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

.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: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 32px;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 24px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background: #27ae60;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39,174,96,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(39,174,96,0.5);
}

.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.content-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

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

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-info-item p {
    color: #666;
    margin: 0;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        margin-top: 16px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

    .story-layout {
        flex-direction: column;
        gap: 40px;
    }

    .coverage-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-pricing {
        align-items: flex-start;
        width: 100%;
    }

    .btn-select {
        width: 100%;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}

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

    .intro-text {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}