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

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #0066cc;
}

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

.hero-content {
    flex: 1;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.hero-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0066cc;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.cta-inline {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #0052a3;
}

.intro-split {
    display: flex;
    padding: 100px 5%;
}

.intro-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.problem-amplification {
    background-color: #f9f9f9;
    padding: 90px 8%;
}

.problem-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.split-layout {
    display: flex;
    gap: 60px;
}

.problem-left {
    flex: 1;
}

.problem-right {
    flex: 1;
}

.problem-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.checklist {
    list-style: none;
}

.checklist li {
    font-size: 17px;
    padding: 15px 0 15px 35px;
    position: relative;
    color: #4a4a4a;
}

.checklist li:before {
    content: '×';
    position: absolute;
    left: 0;
    font-size: 28px;
    color: #cc0000;
    font-weight: 700;
}

.insight-section {
    padding: 90px 8%;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

.insight-card {
    flex: 1;
    background-color: #2a2a2a;
    padding: 40px 30px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.testimonial-split {
    display: flex;
    padding: 90px 5%;
}

.testimonial-image {
    flex: 0 0 40%;
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 30px;
}

blockquote p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
    font-style: italic;
}

cite {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}

.services-preview {
    padding: 90px 8%;
    background-color: #f5f5f5;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-container {
    display: flex;
    gap: 35px;
}

.service-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a4a4a;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 25px;
    display: block;
}

.benefits-reveal {
    padding: 90px 8%;
}

.benefits-split {
    display: flex;
    gap: 60px;
}

.benefits-left {
    flex: 1;
}

.benefits-right {
    flex: 1;
    overflow: hidden;
}

.benefits-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.benefits-list li {
    font-size: 18px;
    padding: 18px 0 18px 40px;
    position: relative;
    color: #4a4a4a;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 24px;
    color: #00aa00;
    font-weight: 700;
}

.approach-section {
    background-color: #f9f9f9;
    padding: 90px 8%;
}

.approach-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-content > p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.approach-split {
    display: flex;
    gap: 50px;
}

.approach-text {
    flex: 1;
}

.approach-visual {
    flex: 0 0 45%;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.cta-split-section {
    display: flex;
    padding: 90px 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-content {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #d0d0d0;
}

.cta-form {
    flex: 1;
    background-color: #2a2a2a;
    padding: 45px 40px;
    border-radius: 8px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #4a4a4a;
    border-radius: 5px;
    font-size: 16px;
    background-color: #3a3a3a;
    color: #ffffff;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

form button {
    width: 100%;
    margin-top: 10px;
}

.final-trust {
    padding: 90px 8%;
    background-color: #f5f5f5;
}

.trust-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.trust-wrapper > p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 50px;
    color: #4a4a4a;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 250px;
}

.disclaimer-section {
    padding: 50px 8%;
    background-color: #fffaf0;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-split {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 8% 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

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

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #0052a3;
}

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

.cookie-reject:hover {
    background-color: #3a3a3a;
}

.about-hero-split {
    display: flex;
    padding: 90px 5%;
    background-color: #f9f9f9;
}

.about-hero-content {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
}

.about-hero-image {
    flex: 0 0 50%;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-section {
    padding: 90px 8%;
}

.story-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.story-split {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.story-text {
    flex: 1;
}

.story-visual {
    flex: 0 0 45%;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-continuation p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-section {
    padding: 90px 8%;
    background-color: #f5f5f5;
}

.team-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 35px;
}

.team-member {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 15px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p:not(.role) {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.methodology-split {
    padding: 90px 8%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.methodology-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.methodology-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #d0d0d0;
}

.methodology-details {
    display: flex;
    gap: 40px;
}

.methodology-item {
    flex: 1;
    background-color: #2a2a2a;
    padding: 40px 30px;
    border-radius: 8px;
}

.methodology-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.values-section {
    padding: 90px 8%;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.values-split {
    display: flex;
    gap: 60px;
}

.values-left,
.values-right {
    flex: 1;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.results-section {
    padding: 90px 8%;
    background-color: #f9f9f9;
}

.results-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.results-grid {
    display: flex;
    gap: 35px;
}

.result-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.result-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    display: block;
    margin-bottom: 15px;
}

.result-card p {
    font-size: 16px;
    color: #4a4a4a;
}

.cta-about {
    padding: 80px 8%;
    background-color: #0066cc;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 35px;
}

.cta-about-content .cta-primary {
    background-color: #ffffff;
    color: #0066cc;
}

.cta-about-content .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-hero {
    padding: 90px 8%;
    background-color: #f9f9f9;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

.service-detail-split {
    display: flex;
    padding: 90px 5%;
}

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

.service-detail-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a4a4a;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-duration {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.services-comparison {
    padding: 90px 8%;
    background-color: #f5f5f5;
}

.services-comparison h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #1a1a1a;
    color: #ffffff;
}

th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

td {
    padding: 20px 15px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #4a4a4a;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #f9f9f9;
}

.faq-section {
    padding: 90px 8%;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-services {
    padding: 80px 8%;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-services-content p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 35px;
}

.contact-hero {
    padding: 90px 8%;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

.contact-main-split {
    display: flex;
    padding: 90px 5%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 0 0 50%;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.map-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.contact-details-section {
    padding: 90px 8%;
    background-color: #f5f5f5;
}

.contact-details-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.contact-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.contact-detail-card {
    flex: 0 0 calc(50% - 18px);
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
}

.contact-detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-detail-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.visit-us-section {
    padding: 90px 8%;
}

.visit-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.visit-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.transport-section {
    padding: 90px 8%;
    background-color: #f9f9f9;
}

.transport-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.transport-split {
    display: flex;
    gap: 30px;
}

.transport-option {
    flex: 1;
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
}

.transport-option h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.transport-option p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.newsletter-section {
    padding: 80px 8%;
    background-color: #0066cc;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-note {
    font-size: 14px;
    color: #e0e0e0;
    font-style: italic;
}

.thanks-hero {
    padding: 90px 8%;
    text-align: center;
    background-color: #f9f9f9;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto 40px;
}

.thanks-service {
    background-color: #e8f4ff;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 0 auto 50px;
    max-width: 600px;
    font-size: 18px;
    color: #0066cc;
    font-weight: 600;
}

.thanks-next-steps {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.steps-list li strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.steps-list li p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-resources {
    padding: 90px 8%;
}

.thanks-resources h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.resources-grid {
    display: flex;
    gap: 35px;
}

.resource-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.thanks-testimonial {
    padding: 90px 8%;
    background-color: #f5f5f5;
}

.testimonial-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonial-wrapper blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-footer-cta {
    padding: 80px 8%;
    text-align: center;
    background-color: #1a1a1a;
}

.footer-cta-content p {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}

.legal-content {
    padding: 90px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .split-layout,
    .insight-grid,
    .testimonial-split,
    .services-container,
    .benefits-split,
    .approach-split,
    .cta-split-section,
    .trust-stats,
    .footer-main,
    .about-hero-split,
    .story-split,
    .team-grid,
    .methodology-details,
    .values-split,
    .results-grid,
    .service-detail-split,
    .faq-grid,
    .contact-main-split,
    .contact-details-grid,
    .transport-split,
    .resources-grid {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .problem-left,
    .problem-right,
    .testimonial-content,
    .benefits-left,
    .approach-text,
    .cta-content,
    .about-hero-content,
    .story-text,
    .values-left,
    .values-right,
    .service-detail-content,
    .contact-info {
        padding-left: 0;
        padding-right: 0;
    }

    .intro-image,
    .testimonial-image,
    .benefits-right,
    .approach-visual,
    .about-hero-image,
    .story-visual,
    .service-detail-image,
    .contact-map {
        flex: 1;
        max-height: 400px;
    }

    .faq-item,
    .contact-detail-card {
        flex: 1;
    }

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

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-right {
        gap: 20px;
    }
}

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

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .trust-wrapper h2,
    .team-section h2,
    .results-wrapper h2,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

    .price {
        font-size: 28px;
    }

    table {
        font-size: 13px;
    }

    th,
    td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .intro-split,
    .problem-amplification,
    .insight-section,
    .testimonial-split,
    .services-preview,
    .benefits-reveal,
    .approach-section,
    .cta-split-section,
    .final-trust,
    .disclaimer-section,
    .footer-split,
    .about-hero-split,
    .story-section,
    .team-section,
    .methodology-split,
    .values-section,
    .results-section,
    .cta-about,
    .services-hero,
    .service-detail-split,
    .services-comparison,
    .faq-section,
    .cta-services,
    .contact-hero,
    .contact-main-split,
    .contact-details-section,
    .visit-us-section,
    .transport-section,
    .newsletter-section,
    .thanks-hero,
    .thanks-resources,
    .thanks-testimonial,
    .thanks-footer-cta,
    .legal-content {
        padding-left: 4%;
        padding-right: 4%;
    }

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

    .cta-primary {
        padding: 14px 30px;
        font-size: 16px;
    }
}