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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #ff1493;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-group {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.nav-group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #ddd;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover {
    background: #ff1493;
    color: #fff;
    transform: translateY(-2px);
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
}

.nav-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.nav-link.cta {
    background: #ff1493;
    color: #fff;
}

.nav-link.cta:hover {
    background: #e31283;
    transform: translateY(-2px) scale(1.05);
}

/* Burger Menu */
.burger-checkbox {
    display: none;
}

.burger-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.burger-label span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-label span:nth-child(1) {
    top: 0;
}

.burger-label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-label span:nth-child(3) {
    bottom: 0;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
    transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1.5px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 1rem 0;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #ff1493;
    text-decoration: none;
}

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

.cookie-accept {
    background: #ff1493;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #e31283;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.3) 0%, transparent 50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: inline-block;
    background: #ff1493;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta:hover {
    background: #fff;
    color: #ff1493;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff1493;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #ff1493;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #ff1493;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: radial-gradient(circle at top left, rgba(255, 20, 147, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.06), #ffffff);
}

.pricing-intro {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #555;
    font-size: 1.05rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.25rem 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(255, 20, 147, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #000;
}

.pricing-target {
    font-size: 0.98rem;
    color: #777;
    margin-bottom: 1.25rem;
}

.pricing-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.pricing-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    color: #555;
    font-size: 0.98rem;
}

.pricing-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff1493;
    font-size: 1.1rem;
}

.pricing-note {
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.pricing-footer {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 1rem;
    color: #555;
}

/* Portfolio / Studio Sections with Photos */
.portfolio {
    padding: 5rem 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.06);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* Neon Studio Section */
.studio {
    padding: 5rem 0 5.5rem;
    background: radial-gradient(circle at top left, rgba(255, 20, 147, 0.2), rgba(5, 5, 10, 1)),
                radial-gradient(circle at bottom right, rgba(0, 0, 0, 1), #020208);
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.studio::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 20, 147, 0.38), transparent 55%),
        radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.studio .section-title {
    color: #fff;
}

.studio .section-title::after {
    background: #ff8ad1;
}

.studio-headline {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.studio-eyebrow {
    display: inline-block;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffb3e4;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.studio-tagline {
    color: #e3e3e3;
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.studio-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: center;
}

.studio-copy p {
    font-size: 1.02rem;
    color: #f0f0f0;
    margin-bottom: 1.4rem;
}

.studio-list {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.studio-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.98rem;
    color: #d8d8d8;
}

.studio-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff1493 0%, #ff8ad1 60%, transparent 100%);
    box-shadow: 0 0 12px rgba(255, 20, 147, 0.7);
}

.studio-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.studio-pills span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #ffe7f7;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.55);
}

.studio-gallery {
    display: grid;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.studio-gallery-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.studio-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.studio-gallery-main:hover img {
    transform: scale(1.06);
}

.studio-gallery-label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.3rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    font-size: 0.9rem;
}

.studio-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.studio-gallery-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.studio-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.studio-gallery-caption {
    padding: 0.75rem 0.9rem 0.9rem;
    font-size: 0.86rem;
    color: #e0e0e0;
}

/* Sustainability Section */
.sustainability {
    padding: 5rem 0;
    background: #050507;
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 20, 147, 0.22), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.sustainability .section-title {
    color: #fff;
}

.sustainability .section-title::after {
    background: #ff8ad1;
}

.sustainability-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 3rem;
    z-index: 1;
}

.sustainability-text p {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 1.3rem;
}

.sustainability-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.sustainability-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 14px;
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.sustainability-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.sustainability-item p {
    font-size: 0.95rem;
    color: #d5d5d5;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #000;
    color: #fff;
}

.contact .section-title {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff1493;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #ff1493;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid #ff1493;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #ff1493;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    color: #ff1493;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff1493;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff1493;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .burger-label {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
    }

    .burger-checkbox:checked ~ .nav {
        transform: translateX(0);
    }

    .burger-checkbox:checked ~ .burger-label {
        position: fixed;
        top: 25px;
        right: 20px;
        z-index: 1001;
    }

    .nav-group {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }

    .nav-group:not(:last-child)::after {
        display: none;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #eee;
        border-radius: 0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .about-content,
    .contact-content,
    .sustainability-grid,
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .portfolio-grid,
    .studio-grid,
    .pricing-grid,
    .sustainability-points {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .container {
        padding: 0 15px;
    }
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Legal Pages */
.legal-page {
    background: #f8f9fa;
    padding: 2rem 0;
    min-height: 100vh;
}

.legal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
}

.legal-content h1 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    border-bottom: 3px solid #ff1493;
    padding-bottom: 0.5rem;
}

.legal-content h2 {
    color: #ff1493;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #ff1493;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #ff1493;
    color: #fff;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    text-align: center;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ff1493;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: #ff1493;
    color: #fff;
    transform: translateY(-2px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Smooth transitions for all interactive elements */
a, button, .nav-link, .hero-cta, .cta-button, .service-card, .portfolio-item {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Additional responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
}