:root {
    --primary: #1a3a5c;
    --secondary: #e8b84a;
    --accent: #2d6a9f;
    --dark: #0f1c2e;
    --light: #f7f9fc;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --white: #ffffff;
    --border: #d1dce5;
    --shadow: rgba(26, 58, 92, 0.12);
    --fallback-img: #c9d6e3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--text-light);
    font-size: 12px;
    padding: 8px 0;
    text-align: center;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    gap: 32px;
}

nav a {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--fallback-img);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 28, 46, 0.92) 0%, rgba(26, 58, 92, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
    margin-left: 8%;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: #d4a63e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 184, 74, 0.35);
}

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

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

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

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

.asymmetric-section {
    padding: 100px 0;
    position: relative;
}

.asymmetric-section.alt-bg {
    background-color: var(--light);
}

.section-offset-left {
    margin-left: -5%;
    padding-left: 5%;
}

.section-offset-right {
    margin-right: -5%;
    padding-right: 5%;
}

.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.asymmetric-grid.reverse {
    flex-direction: row-reverse;
}

.asymmetric-text {
    flex: 1;
    min-width: 320px;
    padding: 32px 0;
}

.asymmetric-visual {
    flex: 1.2;
    min-width: 360px;
    position: relative;
}

.visual-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px var(--shadow);
    background-color: var(--fallback-img);
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    border-radius: 8px;
    z-index: -1;
}

.visual-frame img {
    width: 100%;
    display: block;
}

.section-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--dark);
}

.feature-text {
    font-size: 16px;
    color: var(--text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 48px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow);
}

.service-card:nth-child(2) {
    margin-top: 40px;
}

.service-card:nth-child(3) {
    margin-top: -20px;
}

.service-img {
    height: 200px;
    background-color: var(--fallback-img);
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-body {
    padding: 28px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

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

.staggered-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.staggered-main {
    flex: 2;
    min-width: 400px;
}

.staggered-side {
    flex: 1;
    min-width: 280px;
    position: sticky;
    top: 120px;
}

.side-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px var(--shadow);
}

.side-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.contact-info-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-color: rgba(232, 184, 74, 0.08);
    border-radius: 50%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-badge {
    background-color: rgba(232, 184, 74, 0.2);
    color: var(--secondary);
}

.testimonials-header .section-title {
    color: var(--white);
}

.testimonials-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px;
    position: relative;
}

.testimonial-card:nth-child(2) {
    margin-top: 40px;
}

.testimonial-quote {
    font-size: 40px;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.form-section {
    padding: 100px 0;
    background-color: var(--light);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
    min-width: 320px;
}

.form-container {
    flex: 1.3;
    min-width: 360px;
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 16px 48px var(--shadow);
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background-color: var(--light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(232, 184, 74, 0.15);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    margin-top: 12px;
}

.cta-banner {
    background-color: var(--secondary);
    padding: 60px 0;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 17px;
    color: rgba(15, 28, 46, 0.75);
}

.cta-banner .btn {
    background-color: var(--dark);
    color: var(--white);
}

.cta-banner .btn:hover {
    background-color: var(--primary);
}

footer {
    background-color: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 320px;
}

.footer-links {
    flex: 1;
    min-width: 160px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 28px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 24px var(--shadow);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--dark);
}

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

.cookie-reject {
    background-color: var(--light);
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background-color: var(--border);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(232, 184, 74, 0.1);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
}

.page-content {
    padding: 80px 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin: 40px 0 16px;
}

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

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

.content-block ul {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.content-block li {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.about-image .visual-frame {
    transform: rotate(-2deg);
}

.about-text {
    flex: 1.2;
    min-width: 360px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: var(--light);
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--dark);
}

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

.value-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.service-page-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 320px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.service-page-img {
    height: 220px;
    background-color: var(--fallback-img);
}

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

.service-page-body {
    padding: 36px;
}

.service-page-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-page-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 28px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
}

.service-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    flex-shrink: 0;
}

.service-page-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-main {
    flex: 1.5;
    min-width: 360px;
}

.contact-sidebar {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow);
    margin-bottom: 32px;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}

.hours-list {
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text);
}

.hours-time {
    color: var(--text-light);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-card {
    max-width: 580px;
    text-align: center;
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px 48px;
    box-shadow: 0 24px 64px var(--shadow);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--dark);
}

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

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

.thanks-service {
    background-color: var(--light);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 32px;
}

.thanks-service-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.thanks-service-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 34px;
    }

    .asymmetric-grid {
        flex-direction: column;
    }

    .asymmetric-grid.reverse {
        flex-direction: column;
    }

    .staggered-side {
        position: static;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        margin-top: 0;
    }

    .testimonial-card:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        box-shadow: -4px 0 24px var(--shadow);
        transition: right 0.3s ease;
    }

    nav ul.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 101;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-content {
        margin-left: 0;
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .asymmetric-section {
        padding: 60px 0;
    }

    .section-offset-left,
    .section-offset-right {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .form-container {
        padding: 32px 24px;
    }

    .cta-content {
        text-align: center;
        justify-content: center;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .service-page-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
