/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-right a:hover {
    color: #1a1a1a;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 5rem;
    background: #f9f9f9;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-right {
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    padding: 6rem 5rem;
    gap: 5rem;
    align-items: center;
    background: #ffffff;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 0.8;
}

.intro-visual img {
    width: 100%;
    height: auto;
}

/* Services Grid */
.services-grid {
    padding: 5rem 5rem;
    background: #f9f9f9;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background: #ffffff;
    overflow: hidden;
    min-height: 400px;
}

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

.service-left,
.service-right {
    flex: 1;
}

.service-left {
    overflow: hidden;
}

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

.service-card-split:hover .service-left img {
    transform: scale(1.05);
}

.service-right {
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #333;
    transform: translateX(5px);
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

/* Process Section */
.process-section {
    padding: 5rem 5rem;
    background: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* CTA Split Visual */
.cta-split-visual {
    display: flex;
    min-height: 600px;
    background: #f9f9f9;
}

.cta-left {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.cta-right {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    background: #ffffff;
}

/* Form Styles */
.main-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem 1.3rem;
    border: 2px solid #e8e8e8;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.main-form button[type="submit"] {
    width: 100%;
}

/* Footer Split */
.footer-split {
    display: flex;
    padding: 4rem 5rem;
    background: #1a1a1a;
    color: #ffffff;
    gap: 5rem;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-left p {
    color: #ccc;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 3rem;
    z-index: 10000;
    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: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

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

.cookie-btn.accept {
    background: #ffffff;
    color: #1a1a1a;
}

.cookie-btn.accept:hover {
    background: #e8e8e8;
}

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* About Page Styles */
.about-hero-split {
    display: flex;
    min-height: 70vh;
    background: #f9f9f9;
}

.about-hero-left {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-left h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.about-hero-right {
    flex: 1;
    overflow: hidden;
}

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

.story-section {
    padding: 5rem 8rem;
    background: #ffffff;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.philosophy-split {
    display: flex;
    background: #f9f9f9;
}

.philosophy-left {
    flex: 1;
    overflow: hidden;
}

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

.philosophy-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.philosophy-list li {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.philosophy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.credentials-section {
    padding: 5rem 5rem;
    background: #ffffff;
}

.credentials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.credentials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.credential-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9f9f9;
}

.credential-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.credential-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.values-split {
    display: flex;
    background: #1a1a1a;
    color: #ffffff;
}

.values-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.values-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-about {
    padding: 5rem;
    text-align: center;
    background: #f9f9f9;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Services Page */
.services-hero {
    padding: 5rem 5rem;
    text-align: center;
    background: #f9f9f9;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 5rem;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background: #f9f9f9;
    min-height: 450px;
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-right {
    flex: 1.2;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-detail-right h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-right ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.service-detail-right ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 5rem;
    background: #f9f9f9;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.cta-services {
    padding: 5rem;
    text-align: center;
    background: #ffffff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

/* Contact Page */
.contact-hero {
    padding: 5rem 5rem;
    text-align: center;
    background: #f9f9f9;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    padding: 4rem 5rem;
    background: #ffffff;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-block a {
    color: #1a1a1a;
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
}

.contact-map {
    flex: 1;
    overflow: hidden;
}

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

.working-process {
    padding: 5rem 5rem;
    background: #f9f9f9;
}

.working-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    text-align: center;
}

.process-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-contact {
    padding: 5rem 5rem;
    background: #ffffff;
}

.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
}

.faq-list .faq-item {
    margin-bottom: 2.5rem;
}

.cta-contact {
    padding: 5rem;
    text-align: center;
    background: #f9f9f9;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 5rem;
    background: #f9f9f9;
    min-height: 70vh;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 4rem;
}

.what-next {
    margin-bottom: 4rem;
    text-align: left;
}

.what-next h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.next-step {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.next-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.prepare-section {
    background: #ffffff;
    padding: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.prepare-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.prepare-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.prepare-section ul {
    list-style: none;
}

.prepare-section ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.prepare-section ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-update {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.cookie-table th {
    background: #f9f9f9;
    font-weight: 700;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-split {
        padding: 1.5rem 2rem;
    }

    .hero-split,
    .about-hero-split,
    .philosophy-split,
    .values-split,
    .testimonial-split,
    .contact-split,
    .cta-split-visual,
    .service-card-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-left,
    .cta-left {
        padding: 3rem 2rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .services-grid,
    .services-detailed,
    .story-section {
        padding: 4rem 2rem;
    }

    .process-steps,
    .next-steps {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .footer-right {
        align-items: flex-start;
    }

    .credentials-grid,
    .faq-grid,
    .process-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1.5rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

    .hero-content h1,
    .about-hero-left h1,
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .intro-large {
        font-size: 1.2rem;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .service-right,
    .service-detail-right {
        padding: 2rem;
    }

    .legal-content {
        padding: 3rem 1.5rem;
    }
}
