* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f3460;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-dark: #1a1a2e;
    --text-light: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--text-light);
    border-bottom: 1px solid var(--gray-300);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--gray-100);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    padding: 3rem;
}

.hero-image-placeholder svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 5% 5rem 10%;
    background-color: white;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.intro-highlight {
    flex: 1;
    display: flex;
    justify-content: center;
}

.stat-box {
    background-color: var(--accent-color);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 250px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.problem-section {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background-color: var(--gray-100);
}

.problem-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.problem-visual svg {
    width: 100%;
    max-width: 400px;
}

.problem-text {
    flex: 1.2;
    padding-left: 4rem;
}

.problem-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.check-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.check-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray-800);
}

.check-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: var(--accent-color);
    color: white;
}

.solution-reveal {
    padding: 6rem 10%;
    background-color: white;
}

.centered-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--gray-100);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.services-preview {
    padding: 6rem 5%;
    background-color: var(--gray-100);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-item p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-select-service {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.trust-building {
    padding: 5rem 10%;
    background-color: white;
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.testimonials {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: var(--gray-100);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 1rem;
}

.contact-form-section {
    padding: 6rem 5%;
    background-color: var(--primary-color);
    color: white;
}

.form-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.form-intro p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.final-cta {
    padding: 5rem 10%;
    background-color: var(--gray-100);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 5% 2rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
    color: white;
}

.page-hero {
    padding: 5rem 10%;
    background-color: var(--gray-100);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-visual svg {
    width: 100%;
    max-width: 500px;
}

.mission-section {
    padding: 5rem 10%;
    background-color: var(--gray-100);
}

.mission-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.mission-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.values-offset {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background-color: white;
}

.values-text {
    flex: 1.5;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.values-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.values-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.team-intro {
    padding: 5rem 10%;
    background-color: var(--gray-100);
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.approach-section {
    padding: 5rem 5%;
    background-color: white;
}

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.approach-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(25% - 1.5rem);
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 10%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-intro-text {
    padding: 3rem 10%;
    background-color: white;
    text-align: center;
}

.services-intro-text p {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 5%;
    background-color: var(--gray-100);
}

.service-detail {
    background-color: white;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background-color: var(--gray-100);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content {
    padding: 2.5rem 3rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--secondary-color);
}

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-comparison {
    padding: 5rem 5%;
    background-color: white;
}

.service-comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--gray-300);
}

.comparison-header {
    background-color: var(--gray-100);
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1.5rem;
    border-right: 1px solid var(--gray-300);
}

.comparison-cell:last-child {
    border-right: none;
}

.service-cta {
    padding: 5rem 10%;
    background-color: var(--gray-100);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background-color: white;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-map-placeholder {
    background-color: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder svg {
    width: 100%;
    height: auto;
}

.contact-text {
    flex: 1.2;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.contact-text h4 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
}

.contact-list {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--gray-600);
}

.contact-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-note {
    background-color: var(--gray-100);
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    font-size: 0.95rem;
    color: var(--gray-600);
}

.contact-reasons {
    padding: 5rem 5%;
    background-color: var(--gray-100);
}

.contact-reasons h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
}

.reason-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reason-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 10%;
    background-color: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-300);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-final-cta {
    padding: 5rem 10%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-hero {
    padding: 5rem 10%;
    text-align: center;
    background-color: var(--gray-100);
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 200px;
    height: 200px;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.thanks-details {
    padding: 5rem 5%;
    background-color: white;
}

.thanks-info {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-box {
    display: flex;
    gap: 2rem;
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.thanks-service-info {
    padding: 3rem 5%;
    background-color: var(--gray-100);
    text-align: center;
}

.thanks-service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.selected-service-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    border-left: 4px solid var(--accent-color);
}

.service-name-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price-display {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-service-info p {
    color: var(--gray-600);
}

.thanks-resources {
    padding: 5rem 10%;
    background-color: white;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-resources > p {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.resource-card p {
    color: var(--gray-600);
}

.thanks-contact {
    padding: 3rem 10%;
    background-color: var(--gray-100);
    text-align: center;
}

.thanks-contact h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-contact p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
}

.contact-email a {
    color: var(--accent-color);
    font-weight: 700;
}

.legal-page {
    padding: 3rem 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-date {
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--gray-300);
}

.cookie-table thead {
    background-color: var(--gray-100);
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table tbody td {
    color: var(--gray-600);
}

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

    .intro-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .problem-section {
        flex-direction: column;
    }

    .problem-text {
        padding-left: 0;
        padding-top: 2rem;
    }

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

    .values-offset {
        flex-direction: column;
    }

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

    .benefit-card {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

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

    .step-item {
        flex: 1 1 100%;
    }

    .mission-card {
        flex: 1 1 100%;
    }

    .reason-item {
        flex: 1 1 100%;
    }

    .resource-card {
        flex: 1 1 100%;
    }
}

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

    .nav-right {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .centered-heading {
        font-size: 2rem;
    }

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

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
