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

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

.main-nav {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #0f3460;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    background-color: #e8eaf6;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d63850;
}

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

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

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a2e;
    line-height: 1.3;
}

.insight-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.services-showcase {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

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

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

.services-grid-alt {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-horizontal {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-color: #f1f3f5;
    min-height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 20px;
}

.select-service {
    background-color: #0f3460;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #16213e;
}

.storytelling-section {
    padding: 100px 20px;
    background-color: #1a1a2e;
    color: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    line-height: 1.3;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.story-visual {
    flex: 1;
    background-color: #2d3436;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a2e;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 48px;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.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: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.trust-block {
    padding: 100px 20px;
    background-color: #ffffff;
}

.trust-block h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

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

.trust-item {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

.disclaimer-notice {
    background-color: #fff3cd;
    padding: 24px;
    margin: 40px 20px;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-notice p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #495057;
}

.thanks-container .service-info {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-container a {
    display: inline-block;
    background-color: #0f3460;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 24px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #16213e;
}

.page-header {
    background-color: #0f3460;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

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

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

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

.page-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #495057;
}

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

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #495057;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

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

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #495057;
}

.service-detail-price {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-price .price-label {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 12px;
}

.service-detail-price .price-value {
    font-size: 42px;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 24px;
}

.service-detail-price button {
    background-color: #0f3460;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-detail-price button:hover {
    background-color: #16213e;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .services-grid-alt {
        gap: 40px;
    }

    .service-card-horizontal,
    .service-card-horizontal.reverse {
        flex-direction: column;
    }

    .container-split {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-split {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }
}