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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #667eea;
}

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

.split-container {
    display: flex;
    width: 100%;
    min-height: 500px;
    gap: 0;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #667eea;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #667eea;
    color: #fff;
}

.hero-image,
.about-image,
.services-image,
.problem-image,
.approach-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-item h3 {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: #666;
}

.problem-section,
.insight-section,
.services-preview,
.about-story,
.approach-section {
    padding: 80px 0;
}

.content-block {
    max-width: 600px;
}

.content-block h2 {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

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

.problem-list {
    margin-top: 40px;
}

.problem-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.problem-number {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    min-width: 50px;
}

.problem-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.problem-item p {
    color: #666;
    font-size: 16px;
}

.insight-section {
    background: #f8f9fa;
}

.insight-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.insight-intro {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-card p {
    color: #666;
    font-size: 16px;
}

.service-preview-list {
    margin: 30px 0;
}

.service-preview-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-preview-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.price {
    font-size: 24px;
    color: #667eea;
    font-weight: 700;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.form-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 16px;
    color: #333;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 30px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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: 30px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #667eea;
    color: #fff;
}

.btn-accept:hover {
    background: #5568d3;
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.page-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
}

.service-card-detailed {
    margin-bottom: 60px;
}

.service-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-left {
    flex: 2;
}

.service-right {
    flex: 1;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #667eea;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card-detailed h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-includes h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.pricing-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.price-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 48px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 16px;
}

.values-section,
.team-section,
.stats-section,
.certifications-section {
    padding: 80px 0;
}

.values-section h2,
.team-section h2,
.stats-section h2,
.certifications-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

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

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    margin-bottom: 20px;
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.approach-list strong {
    color: #667eea;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #666;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.member-role {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-box h3 {
    font-size: 56px;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    color: #666;
}

.cert-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cert-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cert-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.cert-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #666;
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-details {
    padding: 40px 0;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #667eea;
    margin-bottom: 12px;
}

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

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #5568d3;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

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

.directions-section,
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.directions-section h2,
.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.directions-grid,
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-card,
.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.direction-card h3,
.faq-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.direction-card p,
.faq-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.thanks-hero {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon svg {
    stroke: #fff;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.service-confirmation {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 50px;
    font-size: 18px;
}

.next-steps {
    text-align: left;
    background: #fff;
    color: #333;
    padding: 50px;
    border-radius: 12px;
    margin: 50px 0;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-text p {
    color: #666;
    font-size: 16px;
}

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

.btn-primary {
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #fff;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #667eea;
}

.resources-section {
    padding: 80px 0;
}

.resources-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

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

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
}

.resource-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
}

.resource-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #5568d3;
}

.legal-content {
    padding: 80px 0;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

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

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.7;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    font-weight: 700;
    color: #333;
}

.cookies-table td {
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

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

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

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

    .content-block h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .content-block h2 {
        font-size: 26px;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }
}
