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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --transition: all 0.3s ease;
}

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

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

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    color: white;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #2f855a;
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

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

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

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

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

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

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

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.cta-inline {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-inline:hover {
    gap: 0.8rem;
}

.split-intro {
    display: flex;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

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

.split-content-right {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h2 {
    margin-bottom: 1.5rem;
}

.split-content-right p {
    margin-bottom: 1.2rem;
}

.value-cards {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
}

.split-reverse {
    display: flex;
    align-items: stretch;
}

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

.split-image-right {
    flex: 1;
    overflow: hidden;
}

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

.metrics-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.services-preview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
}

.service-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 3rem;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.cta-service {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

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

.testimonial-section {
    padding: 5rem 4rem;
    background: var(--primary-color);
    color: white;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.approach-detail {
    display: flex;
    padding: 6rem 4rem;
    gap: 3rem;
}

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

.approach-right {
    flex: 1.2;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-item h4 {
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.98rem;
}

.cta-banner {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.contact-form-section {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    background: var(--success-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(56, 161, 105, 0.4);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: #2f855a;
    box-shadow: 0 6px 25px rgba(56, 161, 105, 0.5);
    transform: translateY(-2px);
}

.page-hero {
    padding: 5rem 4rem 3rem;
    background: linear-gradient(135deg, var(--bg-light), white);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.split-about {
    display: flex;
    align-items: stretch;
}

.about-image-left {
    flex: 1;
    overflow: hidden;
}

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

.about-content-right {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-section {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

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

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

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.split-reverse-about {
    display: flex;
    align-items: stretch;
}

.about-content-left {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image-right {
    flex: 1;
    overflow: hidden;
}

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

.team-section {
    padding: 6rem 4rem;
    background: var(--bg-white);
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.credentials {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.credential-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.credential-item h4 {
    font-size: 1rem;
}

.values-split {
    display: flex;
    padding: 6rem 4rem;
    gap: 3rem;
    background: var(--bg-light);
}

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

.values-right {
    flex: 1.2;
}

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

.values-list li {
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.values-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

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

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

.cta-about p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-left {
    background: var(--bg-white);
}

.service-content-right {
    background: var(--bg-light);
}

.service-image-left,
.service-image-right {
    flex: 1;
    overflow: hidden;
}

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

.service-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-deliverables {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.service-deliverables li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 0.7rem;
}

.service-pricing-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-content-right .service-pricing-box {
    background: white;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.engagement-models {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.engagement-models h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.model-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.model-card h3 {
    margin-bottom: 1rem;
}

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

.cta-services h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-services p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    gap: 3rem;
    padding: 6rem 4rem;
    align-items: flex-start;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.contact-text h4 {
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin: 0;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note h4 {
    margin-bottom: 1rem;
}

.form-intro {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.faq-section {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

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

.faq-item p {
    margin: 0;
}

.thanks-hero {
    padding: 6rem 4rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light), white);
}

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

.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 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.service-note {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-next h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps {
    padding-left: 1.5rem;
    text-align: left;
}

.next-steps li {
    list-style: decimal;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

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

.thanks-resources {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

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

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.resource-card h4 {
    margin-bottom: 1rem;
}

.resource-card a {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-content li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content a {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

.cookies-table td {
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .split-reverse,
    .split-about,
    .split-reverse-about,
    .service-split,
    .service-detail-split,
    .approach-detail,
    .values-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .split-content-left,
    .split-content-right,
    .service-details,
    .service-visual {
        flex: none;
        width: 100%;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .split-image-left,
    .split-image-right,
    .about-image-left,
    .about-image-right,
    .service-image-left,
    .service-image-right {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-left,
    .split-content-left,
    .split-content-right,
    .service-details,
    .approach-detail,
    .values-split,
    .contact-split,
    .service-content-left,
    .service-content-right {
        padding: 3rem 2rem;
    }

    .value-cards,
    .services-preview,
    .philosophy-section,
    .team-section,
    .engagement-models,
    .faq-section,
    .thanks-resources,
    .contact-form-section {
        padding: 4rem 2rem;
    }

    .cta-banner,
    .cta-about,
    .cta-services,
    .testimonial-section {
        padding: 3rem 2rem;
    }

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

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

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

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

    .cookie-content {
        padding: 0 1rem;
    }

    .metrics-row {
        gap: 2rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .testimonial-content blockquote {
        font-size: 1.25rem;
    }

    .contact-form-right {
        padding: 2rem;
    }

    .thanks-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-grid,
    .philosophy-grid,
    .credentials,
    .models-grid,
    .faq-grid,
    .resources-grid {
        gap: 1.5rem;
    }

    .value-card,
    .philosophy-card,
    .model-card,
    .faq-item,
    .resource-card {
        min-width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

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

    .thanks-actions a {
        width: 100%;
    }
}