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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 33px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 60px 8% 60px 5%;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-top: 80px;
    z-index: 2;
    position: relative;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image-right {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.problem-block-offset {
    display: flex;
    padding: 120px 5% 120px 10%;
    background-color: var(--bg-light);
    position: relative;
    align-items: center;
}

.problem-text {
    flex: 1;
    max-width: 550px;
    padding-right: 60px;
}

.problem-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 700;
}

.problem-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-visual {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: -60px;
    background-color: #e0f2fe;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.insight-diagonal {
    padding: 100px 5%;
    background-color: var(--bg-white);
    position: relative;
}

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

.insight-wrapper h2 {
    font-size: 48px;
    margin-bottom: 30px;
    margin-left: 120px;
    color: var(--secondary-color);
    font-weight: 700;
}

.insight-wrapper > p {
    font-size: 20px;
    margin-bottom: 60px;
    margin-left: 120px;
    color: var(--text-light);
    max-width: 700px;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transform: rotate(-1deg);
}

.insight-card:nth-child(2) {
    transform: rotate(1deg) translateY(20px);
}

.insight-card:nth-child(3) {
    transform: rotate(-0.5deg) translateY(-15px);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.insight-card p {
    color: var(--text-light);
    font-size: 16px;
}

.how-it-works-staggered {
    padding: 120px 5%;
    background-color: #0f172a;
    color: white;
}

.how-it-works-staggered h2 {
    font-size: 48px;
    margin-bottom: 80px;
    text-align: center;
}

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

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.step-left {
    margin-right: 15%;
}

.step-right {
    margin-left: 15%;
}

.step-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 30px;
    line-height: 1;
}

.step h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.step p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.6;
}

.testimonials-overlap {
    padding: 100px 5%;
    background-color: var(--bg-light);
    position: relative;
}

.testimonials-overlap h2 {
    font-size: 48px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--secondary-color);
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial:nth-child(1) {
    transform: rotate(-1deg);
    margin-top: 20px;
}

.testimonial:nth-child(2) {
    transform: rotate(0.5deg);
}

.testimonial:nth-child(3) {
    transform: rotate(-0.8deg);
    margin-top: 40px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.services-asymmetric {
    padding: 120px 5%;
    background-color: var(--bg-white);
}

.services-asymmetric h2 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-left: 8%;
}

.services-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: 8%;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.service-offset-1 {
    margin-top: 0;
}

.service-offset-2 {
    margin-top: 60px;
}

.service-offset-3 {
    margin-top: 30px;
}

.service-offset-4 {
    margin-top: 90px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e0f2fe;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 25px 25px 15px;
    color: var(--secondary-color);
}

.service-card > p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: var(--text-light);
}

.service-card ul {
    list-style: none;
    margin: 0 25px 25px;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 25px 20px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.security-diagonal {
    display: flex;
    padding: 100px 5%;
    background-color: var(--bg-light);
    align-items: center;
    gap: 60px;
}

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

.security-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
}

.security-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.security-item p {
    font-size: 16px;
    color: var(--text-light);
}

.security-image {
    flex: 1;
    max-width: 500px;
    background-color: #dbeafe;
}

.security-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.cta-section-overlap {
    padding: 80px 5%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
}

.cta-box {
    max-width: 800px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    text-align: center;
    transform: rotate(-1deg);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.cta-box h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.registration-form-offset {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10%);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-section p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #664d03;
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

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

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

.page-header {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

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

.services-detail {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    padding: 40px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-detail-content img {
    flex: 1;
    max-width: 450px;
    border-radius: 8px;
    object-fit: cover;
    height: auto;
    background-color: #dbeafe;
}

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

.service-detail-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-text h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-detail-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.cta-services {
    padding: 80px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.about-story {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.about-content-left {
    flex: 1;
}

.about-content-left h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image-right {
    flex: 1;
    max-width: 500px;
    background-color: #dbeafe;
}

.about-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: rotate(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-values {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.about-values h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-how-we-work {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.about-work-image {
    flex: 1;
    max-width: 480px;
    background-color: #e0e7ff;
}

.about-work-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-work-content {
    flex: 1;
}

.about-work-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-work-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-technology {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.about-technology h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-color);
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: white;
    border-radius: 8px;
}

.tech-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tech-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-commitment {
    padding: 80px 5%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
}

.commitment-box {
    max-width: 900px;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.commitment-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.commitment-box p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-content {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
    background-color: var(--bg-white);
}

.contact-info-main {
    flex: 1;
}

.contact-info-main h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    max-width: 500px;
    background-color: #f3e8ff;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: rotate(-1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.contact-support {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.contact-support h2 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--secondary-color);
}

.contact-support > p {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.support-times {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.support-tier {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.support-tier h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.support-tier p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-cta {
    padding: 80px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.legal-page {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-table {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.cookie-table h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.cookie-table p {
    font-size: 15px;
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.next-steps {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.btn-return {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-return:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

#selectedServiceDisplay {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-content-left {
        padding-top: 20px;
    }

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

    .hero-image-right {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        margin-top: 40px;
    }

    .problem-block-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .problem-visual {
        margin-left: 0;
        margin-top: 30px;
    }

    .security-diagonal,
    .about-story,
    .about-how-we-work,
    .contact-content {
        flex-direction: column;
    }

    .service-offset-1,
    .service-offset-2,
    .service-offset-3,
    .service-offset-4 {
        margin-top: 0;
    }

    .form-container {
        transform: none;
    }

    .nav-links {
        gap: 15px;
    }

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

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

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