:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d2a;
    --secondary: #8fbc8f;
    --accent: #c9a959;
    --dark: #1a1a1a;
    --light: #f8f9f5;
    --gray: #6b7280;
    --gray-light: #e5e7e3;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

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

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

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

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

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

.main-nav a:hover::after {
    width: 100%;
}

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

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

/* Hero Magazine */
.hero-magazine {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-magazine::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") repeat;
    background-size: 60px;
    transform: rotate(15deg);
}

.hero-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
}

.hero-label {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-frame {
    background: var(--secondary);
    padding: 20px;
    position: relative;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--accent);
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image svg {
    width: 200px;
    height: 200px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

/* Magazine Grid Section */
.magazine-grid-section {
    padding: 90px 0;
    background: var(--white);
}

.magazine-columns {
    display: flex;
    gap: 40px;
}

.magazine-main {
    flex: 2;
}

.magazine-sidebar {
    flex: 1;
    padding-left: 40px;
    border-left: 1px solid var(--gray-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

/* Feature Cards */
.feature-card {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-light);
}

.feature-card:first-child {
    padding-top: 0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed var(--gray-light);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.sidebar-cta {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.sidebar-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light);
}

.services-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
    opacity: 0.9;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

/* Editorial Section */
.editorial-section {
    padding: 100px 0;
    background: var(--white);
}

.editorial-layout {
    display: flex;
    gap: 80px;
}

.editorial-text {
    flex: 1.5;
}

.editorial-visual {
    flex: 1;
    position: relative;
}

.editorial-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 4px solid var(--accent);
}

.editorial-body {
    column-count: 2;
    column-gap: 40px;
    font-size: 1rem;
    color: var(--gray);
}

.editorial-body p {
    margin-bottom: 20px;
}

.visual-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-box {
    height: 180px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-box:nth-child(2) {
    margin-left: 40px;
    background: var(--primary);
}

.visual-box svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
    opacity: 0.8;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

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

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-layout {
    display: flex;
    gap: 60px;
}

.form-content {
    flex: 1;
}

.form-wrapper {
    flex: 1.2;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

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

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

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

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

.form-group.full-width {
    flex: 1 1 100%;
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
}

/* Contact Info */
.contact-info-list {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.sticky-cta .btn {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 16px 28px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* Page Headers */
.page-header {
    padding: 140px 0 60px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* About Page */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 150px;
    height: 150px;
    fill: var(--white);
    opacity: 0.8;
}

/* Values */
.values-section {
    padding: 80px 0;
    background: var(--light);
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Team */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-photo {
    width: 160px;
    height: 160px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-member .role {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Services Page */
.services-full {
    padding: 80px 0;
    background: var(--white);
}

.service-detail {
    display: flex;
    gap: 50px;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image svg {
    width: 100px;
    height: 100px;
    fill: var(--white);
    opacity: 0.9;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-price-tag {
    display: inline-block;
    background: var(--light);
    padding: 15px 30px;
    margin-top: 10px;
}

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

.service-price-tag .period {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-full {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-main {
    flex: 1.5;
}

.contact-sidebar {
    flex: 1;
}

.info-card {
    background: var(--light);
    padding: 40px;
    margin-bottom: 30px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    margin-bottom: 10px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-light);
    color: var(--gray);
}

/* Thanks Page */
.thanks-section {
    padding: 160px 0 100px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-content .btn {
    margin-top: 30px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .magazine-columns,
    .editorial-layout,
    .form-layout,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .magazine-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--gray-light);
        padding-top: 40px;
    }

    .editorial-body {
        column-count: 1;
    }

    .testimonials-grid,
    .values-grid,
    .team-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

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

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

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sticky-cta {
        right: 15px;
        bottom: 90px;
    }
}
