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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7d;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-notice {
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.nav-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    padding: 80px 6% 60px;
    background-color: var(--bg-light);
    align-items: center;
}

.hero-content-offset {
    width: 48%;
    padding-right: 60px;
    z-index: 2;
    margin-top: -40px;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 54%;
    height: 78%;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -12px 12px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.intro-offset {
    display: flex;
    padding: 90px 6%;
    background-color: var(--bg-white);
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    width: 42%;
    padding-left: 40px;
}

.intro-block-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.25;
}

.intro-block-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-block-right {
    width: 58%;
    position: relative;
    margin-top: -30px;
}

.intro-block-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 8px -8px 30px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.services-cards-irregular {
    padding: 100px 6%;
    background-color: var(--bg-light);
    position: relative;
}

.section-title-offset {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 60px;
    font-weight: 700;
}

.card {
    display: flex;
    background-color: var(--bg-white);
    margin-bottom: 48px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-1 {
    margin-left: 0;
    width: 88%;
}

.card-2 {
    margin-left: 12%;
    width: 86%;
}

.card-3 {
    margin-left: 6%;
    width: 90%;
}

.card-4 {
    margin-left: 14%;
    width: 84%;
}

.card img {
    width: 320px;
    height: 260px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: var(--bg-light);
}

.card-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-content .price {
    font-size: 22px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.form-section-overlap {
    padding: 120px 6%;
    background-color: var(--bg-white);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin-left: 10%;
    background-color: var(--bg-light);
    padding: 48px 52px;
    box-shadow: 12px 12px 48px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.trust-section {
    display: flex;
    padding: 90px 6%;
    background-color: var(--bg-white);
    align-items: center;
    gap: 60px;
}

.trust-content {
    width: 50%;
    padding-right: 40px;
    margin-left: 8%;
}

.trust-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.trust-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.trust-image {
    width: 42%;
    position: relative;
    margin-top: 30px;
}

.trust-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -10px 10px 36px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.values-asymmetric {
    padding: 100px 6%;
    background-color: var(--bg-light);
}

.values-asymmetric h2 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 56px;
    margin-left: 40px;
    font-weight: 700;
}

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

.value-item {
    width: calc(50% - 20px);
    padding: 36px 40px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-item:nth-child(1) {
    margin-left: 0;
}

.value-item:nth-child(2) {
    margin-left: auto;
    margin-right: 0;
    margin-top: 60px;
}

.value-item:nth-child(3) {
    margin-left: 80px;
}

.value-item:nth-child(4) {
    margin-left: auto;
    margin-right: 60px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.65;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 24px 6%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

.disclaimer {
    background-color: var(--bg-light);
    padding: 40px 6%;
    border-top: 1px solid var(--border-color);
}

.disclaimer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero {
    padding: 100px 6% 60px;
    background-color: var(--bg-light);
}

.about-hero-content {
    max-width: 800px;
    margin-left: 60px;
}

.about-hero-content h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-story-offset {
    display: flex;
    padding: 90px 6%;
    background-color: var(--bg-white);
    gap: 70px;
    align-items: center;
}

.story-image {
    width: 48%;
    position: relative;
    margin-top: -50px;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.story-content {
    width: 52%;
    padding-right: 40px;
}

.story-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.approach-section {
    padding: 90px 6%;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 56px;
    text-align: center;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-block {
    width: calc(50% - 18px);
    padding: 36px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-block:nth-child(odd) {
    margin-left: 0;
}

.approach-block:nth-child(even) {
    margin-top: 40px;
}

.approach-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.approach-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.65;
}

.values-detail {
    display: flex;
    padding: 90px 6%;
    background-color: var(--bg-white);
    gap: 70px;
    align-items: center;
}

.values-content {
    width: 54%;
    padding-left: 40px;
}

.values-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.values-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.values-content ul {
    list-style: none;
}

.values-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.values-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.values-image {
    width: 46%;
    position: relative;
    margin-top: 40px;
}

.values-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -8px 8px 32px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.team-intro {
    padding: 90px 6%;
    background-color: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-about {
    padding: 90px 6%;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-hero {
    padding: 100px 6% 60px;
    background-color: var(--bg-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.services-hero p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 6%;
    background-color: var(--bg-white);
}

.service-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-visual {
    width: 45%;
}

.service-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.service-details {
    width: 55%;
}

.service-details h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 24px;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-details ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-price {
    font-size: 26px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-combination {
    padding: 80px 6%;
    background-color: var(--bg-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-combination h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.service-combination p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-section-offset {
    padding: 100px 6%;
    background-color: var(--bg-white);
}

.contact-hero {
    padding: 100px 6% 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 19px;
    color: var(--text-light);
}

.contact-layout {
    display: flex;
    padding: 90px 6%;
    background-color: var(--bg-white);
    gap: 70px;
    align-items: flex-start;
}

.contact-info-main {
    width: 50%;
    padding-right: 40px;
}

.contact-info-main h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info-main > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image-offset {
    width: 50%;
    position: relative;
    margin-top: 60px;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -10px 10px 36px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.contact-approach {
    padding: 90px 6%;
    background-color: var(--bg-light);
}

.contact-approach h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    padding: 36px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-additional {
    padding: 90px 6%;
    background-color: var(--bg-white);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding: 32px;
    background-color: var(--bg-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 90px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-hero {
    padding: 120px 6% 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-content h1 {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.thanks-details {
    padding: 80px 6%;
    background-color: var(--bg-white);
}

.thanks-info {
    max-width: 1000px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 36px;
}

.next-step {
    flex: 1;
    padding: 36px;
    background-color: var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.next-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.next-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-info {
    padding: 80px 6%;
    background-color: var(--bg-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-service-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-service-info p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-explore {
    padding: 80px 6%;
    background-color: var(--bg-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-explore h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-explore p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.explore-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.explore-link {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.explore-link:hover {
    background-color: var(--primary-color);
}

.legal-content {
    padding: 80px 6%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

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

.cookie-table td {
    color: var(--text-light);
}

@media screen and (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 40px;
    }

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        transform: none;
    }

    .intro-offset,
    .about-story-offset,
    .trust-section,
    .values-detail,
    .service-item,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-left,
    .intro-block-right,
    .story-image,
    .story-content,
    .trust-content,
    .trust-image,
    .values-content,
    .values-image,
    .service-visual,
    .service-details,
    .contact-info-main,
    .contact-image-offset {
        width: 100%;
        margin-top: 0;
    }

    .card {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .card img {
        width: 100%;
        height: 250px;
    }

    .values-grid,
    .approach-grid,
    .next-steps,
    .approach-steps {
        flex-direction: column;
    }

    .value-item,
    .approach-block,
    .next-step,
    .step {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .nav-right {
        gap: 20px;
    }

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

    .explore-links {
        flex-direction: column;
    }
}