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

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

.main-nav {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
}

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

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

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

.hero-full {
    position: relative;
    min-height: 600px;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtext {
    color: #f0f0f0;
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.story-intro {
    background-color: #f9f9f9;
    padding: 80px 24px;
}

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

.opening-line {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.problem-reveal {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.insight-list {
    list-style: none;
    margin: 24px 0;
}

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

.insight-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #d9534f;
    font-size: 24px;
    font-weight: 700;
}

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

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

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

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

.insight-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}

.insight-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4af37;
}

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

.trust-builder {
    padding: 80px 24px;
    background-color: #f4f4f4;
}

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

.wide-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.wide-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.reference-note {
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin-top: 32px;
    font-size: 16px;
}

.reference-note a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

.reference-note a:hover {
    text-decoration: underline;
}

.testimonial-flow {
    padding: 80px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

.quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.author {
    font-size: 16px;
    color: #d4af37;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 24px;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
    text-align: center;
}

.services-pricing {
    padding: 100px 24px;
    background-color: #f9f9f9;
}

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-item h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #666;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin: 0 24px 16px;
}

.select-service-btn {
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 24px 24px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.cta-form-section {
    padding: 100px 24px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333;
}

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

.submit-btn {
    width: 100%;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 80px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.main-footer {
    background-color: #0f0f0f;
    color: #b0b0b0;
    padding: 60px 24px 24px;
}

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

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

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

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

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

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

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

.references {
    padding-left: 20px;
}

.references li {
    margin-bottom: 12px;
    font-size: 14px;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 24px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
    font-size: 14px;
}

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

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

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.cookie-btn.reject {
    background-color: #555;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #666;
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
}

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

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

.about-story {
    padding: 80px 24px;
    background-color: #ffffff;
}

.story-block {
    margin-bottom: 48px;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-image {
    background-color: #f5f5f5;
}

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

.values-section {
    padding: 100px 24px;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.team-expertise {
    padding: 80px 24px;
    background-color: #2c3e50;
    color: #ffffff;
}

.team-expertise h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.team-expertise p {
    font-size: 18px;
    margin-bottom: 20px;
}

.commitment-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.commitment-list {
    list-style: none;
    margin: 24px 0;
}

.commitment-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

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

.services-detailed {
    padding: 80px 24px;
    background-color: #ffffff;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 24px;
}

.service-detail-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 24px;
}

.contact-info-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-cta {
    padding: 60px 24px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

.contact-cta a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 24px;
    background-color: #f9f9f9;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 17px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 24px;
}

.next-steps {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #c29d2e;
}

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

.btn-secondary:hover {
    background-color: #34495e;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

.legal-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content a {
    color: #2980b9;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}