:root {
    --primary: #2d3a3a;
    --accent: #c9a86c;
    --light: #f8f6f3;
    --dark: #1a1f1f;
    --text: #3d4a4a;
    --muted: #7a8585;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

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

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

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text {
    flex: 1;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-image-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-image-offset {
    position: absolute;
    width: 220px;
    height: 280px;
    object-fit: cover;
    bottom: -40px;
    left: -60px;
    border: 6px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.hero-accent-box {
    position: absolute;
    top: 40px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--accent);
    opacity: 0.9;
    z-index: -1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 100px 0;
}

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

.section-alt {
    background: var(--white);
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

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

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.offset-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.offset-layout.reverse {
    flex-direction: row-reverse;
}

.offset-content {
    flex: 1;
}

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

.offset-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.offset-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    padding: 30px;
    background: var(--accent);
    color: var(--white);
}

.offset-overlay-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.offset-overlay-text {
    font-size: 0.9rem;
    margin-top: 8px;
}

.features-asymmetric {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    flex: 1;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

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

.feature-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    margin-bottom: 20px;
}

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

.service-desc {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 50%;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.testimonial-quote {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

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

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.gallery-item:nth-child(1) {
    flex: 1 1 calc(50% - 10px);
}

.gallery-item:nth-child(4) {
    flex: 1 1 calc(50% - 10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-section {
    padding: 100px 0;
    background: var(--accent);
    text-align: center;
}

.cta-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 18px 42px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.contact-section {
    display: flex;
    gap: 60px;
    padding: 100px 0;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

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

.contact-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 6px;
}

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

.form-container {
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.06);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary);
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 1.5;
}

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

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

.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.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 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 28px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(201,168,108,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta.visible {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

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

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

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

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

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

.cookie-accept:hover {
    background: #d4b577;
}

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

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2525 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.page-breadcrumb a {
    color: var(--accent);
}

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

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

.content-block h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.content-block h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 16px;
}

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

.content-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-block li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
}

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

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

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

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

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--muted);
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    align-items: center;
}

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

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

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

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

.service-detail-desc {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-detail-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted);
}

.contact-page-layout {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

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

.contact-page-map {
    flex: 1.2;
    background: var(--light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thanks-content {
    max-width: 600px;
}

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

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

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

.thanks-text {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.process-section {
    padding: 100px 0;
    background: var(--white);
}

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

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

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

.process-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .offset-layout {
        gap: 50px;
    }

    .features-asymmetric {
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1 1 calc(50% - 20px);
        margin-top: 0 !important;
    }

    .testimonials-wrapper {
        flex-wrap: wrap;
    }

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

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

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }
}

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-image-offset {
        display: none;
    }

    .hero-accent-box {
        display: none;
    }

    .offset-layout,
    .offset-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .stats-row {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 20px);
    }

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        flex: 1 1 100%;
    }

    .contact-section {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

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

    .about-intro {
        flex-direction: column;
    }

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

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

    .contact-page-layout {
        flex-direction: column;
    }

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

    .process-step::after {
        display: none;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        justify-content: center;
    }
}

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

    .section {
        padding: 70px 0;
    }

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

    .form-container {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}
