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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.intro-left h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-header p {
    font-size: 20px;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0 24px 20px;
}

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

.services-cta {
    text-align: center;
}

.secondary-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

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

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.value-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.value-left h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.value-right {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.value-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
    text-align: center;
}

.testimonials h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.form-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--bg-white);
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-medium);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

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

.submit-button:hover {
    background-color: var(--primary-dark);
}

.disclaimer {
    max-width: 1200px;
    margin: 60px auto;
    padding: 30px 60px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

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

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--text-medium);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-medium);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 22px;
    color: var(--text-medium);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.service-detail-split {
    display: flex;
    min-height: 600px;
    margin-bottom: 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 20px 0 30px 20px;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

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

.service-price-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.services-cta-section {
    background-color: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.about-hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.about-hero-left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-hero-left p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
}

.about-hero-right {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.story-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 60px;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.values-left {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-right {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-white);
}

.values-right h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.team-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.team-intro {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 260px;
    max-width: calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

.numbers-section {
    background-color: var(--bg-light);
    padding: 80px 60px;
    margin: 80px 0;
}

.numbers-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.number-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.number-label {
    font-size: 16px;
    color: var(--text-medium);
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.approach-left {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-white);
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.approach-left ul {
    margin: 20px 0 0 20px;
}

.approach-left ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.approach-right {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-simple {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.cta-simple h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-page-hero {
    max-width: 1000px;
    margin: 80px auto 60px;
    padding: 0 60px;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-page-hero p {
    font-size: 20px;
    color: var(--text-medium);
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.contact-left {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.contact-detail-box {
    margin-bottom: 40px;
}

.contact-detail-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-detail-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-detail-box .note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-right {
    flex: 1;
    background-color: var(--bg-white);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-approach {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 60px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.response-time {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 60px;
}

.response-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.response-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.response-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-page {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    text-align: center;
}

.thanks-content {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-reference {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 17px;
    color: var(--text-medium);
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.step-list {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

.step-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 60px;
}

.legal-content {
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.legal-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .value-split,
    .form-split,
    .service-detail-split,
    .about-hero-split,
    .values-split,
    .approach-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-left,
    .value-left,
    .form-left,
    .form-right,
    .service-detail-content,
    .about-hero-left,
    .values-right,
    .approach-left,
    .contact-left {
        padding: 40px 30px;
    }

    .hero-left h1,
    .about-hero-left h1 {
        font-size: 36px;
    }

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

    .services-grid,
    .testimonial-grid,
    .team-grid {
        flex-direction: column;
    }

    .service-card,
    .team-member {
        max-width: 100%;
    }

    .nav {
        gap: 20px;
    }

    .header-container {
        padding: 16px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}