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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2c5f8d;
    --accent-color: #4a90c8;
    --text-dark: #1f1f1f;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-links {
    display: none;
    gap: 2rem;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    background: var(--bg-light);
}

.hero-left {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s;
}

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

.insight-section {
    padding: 5rem 0;
}

.insight-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.insight-left {
    flex: 1;
}

.insight-image {
    width: 100%;
    border-radius: 8px;
}

.insight-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-right h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-amplification {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.problem-amplification h2 {
    color: var(--bg-white);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.scenario-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.scenario-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scenario-item h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.solution-reveal {
    padding: 5rem 0;
}

.split-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
}

.solution-image {
    width: 100%;
    border-radius: 8px;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.story-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-signals {
    padding: 5rem 0;
}

.trust-signals h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.benefits-section {
    padding: 5rem 0;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-visual {
    flex: 1;
}

.benefits-image {
    width: 100%;
    border-radius: 8px;
}

.benefits-content {
    flex: 1;
}

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

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.services-reveal {
    padding: 5rem 0;
}

.services-reveal h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--bg-white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--warning-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-description {
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: var(--secondary-color);
}

.service-card.featured .btn-service {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.service-card.featured .btn-service:hover {
    background: var(--bg-light);
}

.urgency-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.urgency-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-urgency {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-urgency:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.form-section {
    padding: 5rem 0;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-left {
    flex: 1;
}

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

.form-benefits li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--accent-color);
}

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

.final-cta h2 {
    color: var(--bg-white);
}

.cta-final {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--bg-white);
}

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

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

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

.sticky-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: scale(1.05);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

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

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

.btn-accept:hover {
    background: #218838;
}

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.page-hero {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-detail {
    padding: 3rem 0;
}

.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-ideal {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-service-select {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service-select:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.comparison-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: background 0.3s;
}

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

.story-section-full {
    padding: 5rem 0;
}

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

.research-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-section {
    padding: 5rem 0;
}

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

.mission-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.mission-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.approach-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.difference-section {
    padding: 5rem 0;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.difference-item {
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
}

.values-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-philosophy {
    padding: 5rem 0;
}

.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-cta {
    padding: 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 8px;
}

.contact-cta h3 {
    color: var(--bg-white);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-white);
    color: var(--secondary-color);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--bg-light);
}

.faq-contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.support-types {
    padding: 5rem 0;
}

.support-types h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.support-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.support-email {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.location-note {
    padding: 5rem 0;
    background: var(--bg-light);
}

.thanks-hero {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-light);
}

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-details {
    padding: 3rem 0;
}

.thanks-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.thanks-service-info {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.thanks-note {
    padding: 1rem;
    background: var(--warning-color);
    border-radius: 5px;
    margin-top: 2rem;
}

.thanks-support {
    padding: 5rem 0;
    background: var(--bg-light);
}

.thanks-support h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-option {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.thanks-next-steps {
    padding: 5rem 0;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.next-step-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    margin-top: 2rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.btn-manage-cookies {
    padding: 0.7rem 1.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0;
    transition: background 0.3s;
}

.btn-manage-cookies:hover {
    background: var(--accent-color);
}

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

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .insight-content {
        flex-direction: row;
    }

    .scenario-grid {
        flex-direction: row;
    }

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

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

    .testimonial-grid {
        flex-direction: row;
    }

    .benefits-container {
        flex-direction: row;
    }

    .steps {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .form-container {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .stats-grid {
        flex-direction: row;
    }

    .approach-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .support-grid {
        flex-direction: row;
    }

    .support-options {
        flex-direction: row;
    }

    .next-steps-grid {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .approach-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .value-item {
        flex: 0 0 calc(25% - 1.5rem);
    }
}