* {
    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;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 700px;
}

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

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

.opening-line {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.problem-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #ffffff;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
    color: #ecf0f1;
}

.visual-break {
    height: 500px;
    background-color: #34495e;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.content-wide h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.approach-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

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

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.testimonial-section {
    padding: 80px 40px;
    background-color: #3498db;
    color: #ffffff;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container blockquote {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-container cite {
    font-size: 16px;
    font-style: normal;
    color: #ecf0f1;
}

.benefits-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefits-text {
    flex: 1.2;
}

.benefits-text h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

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

.benefits-image {
    flex: 0.8;
    background-color: #ecf0f1;
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-indicators {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-item h3 {
    font-size: 42px;
    color: #3498db;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

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

.services-content {
    max-width: 1300px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 24px);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #bdc3c7;
}

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #555;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 24px;
}

.select-service-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

.submit-btn:hover {
    background-color: #27ae60;
}

.final-cta {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

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

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

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

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

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

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

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

.footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #ecf0f1;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-icon {
    font-size: 80px;
    color: #2ecc71;
    margin-bottom: 32px;
}

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

.thanks-container p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-info {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    max-width: 600px;
}

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

.thanks-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-actions a {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-actions a:hover {
    background-color: #2980b9;
}

.page-header {
    padding: 80px 40px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

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

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

.page-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.contact-page-content {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.services-page-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 0.8;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-detail-content .service-price-tag {
    font-size: 28px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}

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

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

    .content-split,
    .content-asymmetric,
    .service-detail {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 0 1 100%;
    }

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

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