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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4af37;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #00b894;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.centered {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 24px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-hero {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-hero:hover {
    background: #e6c34b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-indicators {
    padding: 60px 20px;
    background: var(--bg-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.problem-section {
    padding: 100px 20px;
}

.split-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    margin-bottom: 24px;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
}

.btn-text:hover {
    color: var(--primary-color);
}

.services-preview {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.service-card p {
    flex: 1;
    margin-bottom: 24px;
}

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

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    margin-bottom: 16px;
}

.contact-form {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #e6c34b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonials-split {
    display: flex;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    background: var(--primary-color);
    color: white;
}

.testimonial-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 32px;
}

.testimonial-content p {
    font-size: 1.3rem;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-content cite {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-proposition {
    padding: 100px 20px;
    background: var(--bg-white);
}

.value-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 250px;
}

.value-item h3 {
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.value-item p {
    line-height: 1.8;
}

.cta-sticky-trigger {
    padding: 100px 20px;
    background: var(--bg-light);
}

.cta-sticky-trigger h2 {
    margin-bottom: 20px;
}

.cta-sticky-trigger p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-content span {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-sticky {
    padding: 10px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.page-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
}

.lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-split {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.timeline-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 0;
    bottom: -48px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
    position: relative;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
}

.timeline-content h3 {
    margin-bottom: 12px;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-box h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-box p {
    color: var(--text-light);
}

.commitment-split {
    padding: 100px 20px;
}

.cta-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 24px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 32px 0 24px;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

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

.services-detail {
    padding: 60px 20px;
}

.comparison-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-grid {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1 1 300px;
    padding: 40px;
    border-radius: 12px;
    background: var(--bg-light);
}

.comparison-item.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.05);
}

.comparison-item.highlight h3 {
    color: var(--accent-color);
}

.comparison-item h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

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

.comparison-list li {
    padding: 12px 0 12px 32px;
    position: relative;
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #d63031;
    font-weight: 700;
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-item.highlight .comparison-list li {
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: 60px 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-block p {
    line-height: 1.8;
}

.info-block a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.directions-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.directions-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.directions-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.direction-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    max-width: 380px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.direction-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.faq-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.thanks-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--success-color) 0%, #00a383 100%);
    color: white;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 32px;
}

.thanks-hero h1 {
    color: white;
}

.thanks-hero .lead {
    color: rgba(255, 255, 255, 0.95);
}

.thanks-content {
    padding: 80px 20px;
}

.thanks-info h2 {
    margin-bottom: 48px;
    text-align: center;
}

.timeline-steps {
    margin-bottom: 60px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.service-reference {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
}

.service-reference h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-reference p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-additional {
    text-align: center;
    margin-bottom: 40px;
}

.thanks-additional h3 {
    margin-bottom: 16px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.testimonial-thanks {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.testimonial-thanks p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-thanks cite {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-reminder {
    padding: 80px 20px;
    text-align: center;
}

.contact-reminder h2 {
    margin-bottom: 20px;
}

.email-large {
    font-size: 1.5rem;
    margin: 24px 0;
}

.email-large a {
    color: var(--secondary-color);
    font-weight: 600;
}

.hours {
    color: var(--text-light);
    font-style: italic;
}

.legal-page {
    padding: 60px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    margin-bottom: 12px;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    margin-top: 48px;
    margin-bottom: 24px;
}

.legal-page h3,
.legal-page h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-page ul {
    margin: 20px 0 20px 32px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 12px;
    color: var(--text-light);
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s;
        gap: 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-content p {
        font-size: 1.05rem;
    }

    .split-reverse,
    .about-split,
    .testimonials-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-split.split-reverse {
        flex-direction: column;
    }

    .service-detail-content {
        padding: 40px 30px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

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

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

    .stats-grid,
    .team-stats {
        gap: 32px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-year {
        min-width: auto;
    }

    .comparison-item.highlight {
        transform: none;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .btn-hero,
    .btn-large {
        width: 100%;
        text-align: center;
    }

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

    .action-buttons .btn-secondary {
        width: 100%;
    }
}