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

:root {
    --primary-color: #2c5aa0;
    --primary-dark: #1a3d7a;
    --primary-light: #4a7bc8;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fb;
    --bg-medium: #e8eef5;
    --border-color: #d4dce6;
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-block {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    max-width: 600px;
    width: 100%;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: 2px solid var(--accent-color);
}

.cta-primary:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.trust-strip {
    background-color: var(--bg-light);
    padding: 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.trust-strip p {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

.problem-section {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.problem-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.offset-content {
    max-width: 700px;
}

.offset-content h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.offset-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

.visual-accent {
    align-self: flex-end;
    max-width: 300px;
}

.visual-accent svg {
    width: 100%;
    height: auto;
}

.insight-block {
    background-color: var(--bg-medium);
    padding: 5rem 1.5rem;
}

.insight-block h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-dark);
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.insight-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.services-preview {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.service-icon {
    width: 80px;
    height: 80px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-item h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.service-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--primary-dark);
}

.link-arrow::after {
    content: " →";
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

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

.testimonial-section blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-section cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.85;
}

.differentiation-block {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

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

.split-visual {
    max-width: 400px;
    margin: 0 auto;
}

.split-visual svg {
    width: 100%;
    height: auto;
}

.stats-bar {
    background-color: var(--bg-medium);
    padding: 3rem 1.5rem;
}

.stat-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

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

.form-section {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

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

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

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

.final-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e55a28 100%);
    color: var(--bg-white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

.sticky-cta a {
    display: block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background-color: #e55a28;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.page-header {
    background-color: var(--bg-medium);
    padding: 4rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

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

.story-section {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.values-block {
    background-color: var(--bg-light);
    padding: 5rem 1.5rem;
}

.values-block h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-dark);
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.value-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.team-section {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.team-highlight {
    margin: 3rem auto;
    max-width: 500px;
}

.team-highlight svg {
    width: 100%;
    height: auto;
}

.team-list {
    list-style: none;
    margin-top: 1.5rem;
}

.team-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.team-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.approach-section {
    background-color: var(--bg-medium);
    padding: 5rem 1.5rem;
}

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

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

.step-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

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

.certificates-section {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
}

.certificates-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.certificates-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cert-visual {
    max-width: 400px;
    margin: 0 auto;
}

.cert-visual svg {
    width: 100%;
    height: auto;
}

.cta-about {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.services-detailed {
    background-color: var(--bg-white);
    padding: 3rem 1.5rem;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.75rem;
    margin: 0;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    background-color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-body h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-body ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.service-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-note {
    background-color: var(--bg-medium);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
}

.btn-service {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.services-intro {
    background-color: var(--bg-light);
    padding: 2rem 1.5rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.pricing-note {
    background-color: var(--bg-medium);
    padding: 3rem 1.5rem;
}

.pricing-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.pricing-note p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pricing-note ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.pricing-note ul li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: var(--bg-white);
    padding: 4rem 1.5rem;
}

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

.contact-block {
    flex: 1;
    min-width: 250px;
}

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

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.contact-cta {
    background-color: var(--bg-light);
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.map-placeholder {
    background-color: var(--bg-white);
    padding: 4rem 1.5rem;
}

.map-placeholder h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

.map-visual {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.map-visual svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.map-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.thanks-section {
    background-color: var(--bg-white);
    padding: 5rem 1.5rem;
    text-align: center;
}

.thanks-icon {
    max-width: 200px;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 100%;
    height: auto;
}

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

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
}

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

.thanks-note {
    background-color: var(--bg-medium);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 2rem 0;
}

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

.legal-content {
    background-color: var(--bg-white);
    padding: 4rem 1.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.legal-content strong {
    color: var(--text-dark);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--bg-white);
}

.gdpr-table th,
.cookies-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

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

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background-color: var(--bg-light);
}

@media (min-width: 768px) {
    .hero-block {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 6rem 1.5rem;
    }

    .hero-content {
        text-align: left;
        max-width: 550px;
    }

    .problem-section .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-text {
        flex: 1;
    }

    .split-visual {
        flex: 0 0 400px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

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

    .offset-content h2,
    .insight-block h2,
    .services-preview h2,
    .differentiation-block h2 {
        font-size: 1.75rem;
    }

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

    .service-header h2 {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 1.25rem;
    }

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

    .sticky-cta a {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 1rem;
    }

    .hero-block {
        padding: 3rem 1rem;
    }

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

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