/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7c;
    --secondary-color: #2c6ba0;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    background: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem 4rem 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

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

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

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

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

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

.intro-visual,
.intro-content {
    flex: 1;
}

.intro-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    background: var(--background-light);
    padding: 5rem 2rem;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

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

/* Services Preview */
.services-preview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-info {
    flex: 1;
    padding-right: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-width: 200px;
}

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

.btn-select {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    background: var(--background-light);
    margin: 5rem 0;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-visual {
    flex: 1;
}

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

blockquote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

.cta-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.cta-text {
    flex: 1;
    color: white;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-form-container {
    flex: 1;
}

/* Forms */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

/* Trust Indicators */
.trust-indicators {
    background: var(--background-light);
    padding: 4rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item span {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

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

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

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

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 5rem 2rem 3rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

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

.about-visual {
    flex: 1;
}

.about-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.team-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    align-items: center;
}

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

.team-visual {
    flex: 1;
}

.team-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.team-content {
    flex: 1;
}

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

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-stats {
    margin-top: 2rem;
}

.team-stats li {
    padding: 0.8rem 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.approach-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.approach-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 80px;
}

.approach-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin: 5rem 0;
}

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

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

/* Services Page Styles */
.services-intro-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    align-items: center;
}

.services-intro-content {
    flex: 1;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-intro-visual {
    flex: 1;
}

.services-intro-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.service-detail-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail-title h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-tag {
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-detail-body {
    padding: 2rem;
}

.service-detail-body > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-features {
    margin: 2rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-request {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.cta-services {
    background: var(--background-light);
    text-align: center;
    padding: 4rem 2rem;
    margin: 5rem 0;
}

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

.cta-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
}

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

.contact-text p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-text a {
    color: var(--primary-color);
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.map-caption {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-cta {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: var(--background-light);
    border-radius: 12px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

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

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Thanks Page Styles */
.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-confirmation {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step p {
    color: var(--text-dark);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

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

.legal-content ul li {
    list-style: disc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .cta-content-split,
    .about-split,
    .team-split,
    .services-intro-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse {
        flex-direction: column;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .hero-visual img {
        height: 400px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .benefits-container,
    .values-grid {
        flex-direction: column;
    }

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

    .service-price {
        align-items: flex-start;
        width: 100%;
        margin-top: 1rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }

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

    .section-title,
    .intro-content h2,
    .about-content h2,
    .team-content h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}
