:root {
    /* Colors */
    --color-primary: #001F3F;
    /* Navy Blue */
    --color-secondary: #0C6B3E;
    /* Dark Green */
    --color-accent: #C5A065;
    /* Gold/Beige accent placeholder, can be adjusted */
    --color-bg-light: #F4F5F7;
    /* Light grey/beige */
    --color-text-dark: #1A1A1A;
    --color-text-light: #FFFFFF;
    --color-white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    margin-top: -2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    /* border-radius: 4px; */
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #003366;
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    /* Changed from white to transparent */
    /* backdrop-filter: blur(10px); Removed default blur */
    z-index: 1000;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); Removed default shadow */
    padding: 1.5rem 0;
    /* Increased initial padding */
    transition: all 0.4s ease;
    /* Smooth transition for all changes */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    /* Shrink padding on scroll */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
    /* Default white on hero */
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--color-primary);
    /* Dark color on scroll */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Navigation Styles */
.nav-link {
    font-weight: 400;
    color: var(--color-white);
    /* Default white on hero */
    font-size: 1.15rem;
    /* Increased from 0.95rem */
    position: relative;
    padding: 10px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    /* Legibility on image */
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--color-primary);
    text-shadow: none;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-white);
    /* Default white */
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-toggle,
.navbar.menu-active .nav-toggle {
    color: var(--color-primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 0.5rem 0;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--color-primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 1.05rem;
    /* Increased from 0.9rem */
    transition: background-color 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    /* White on hero */
    transition: color 0.3s ease;
}

.navbar.scrolled .lang-btn {
    color: #999;
}

.lang-btn.active {
    color: var(--color-white);
    text-decoration: underline;
}

.navbar.scrolled .lang-btn.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1600596542815-2a4d9f6facb8?q=80&w=2069&auto=format&fit=crop');
    /* Placeholder premium property image */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-inner {
    height: 60vh;
    min-height: 500px;
}

/* Parallax Section Generic */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: center;
    /* Horizontal Center */
    padding: 60px 0;
    /* Maintain padding but height will rule */
}

/* Ensure other sections are also full height if requested to be uniform */
.section-padding {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}



.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.4);
    /* Lighter, more translucent navy tint */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Hero Subheader specialized font */
.hero-subheader {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

/* Services Redesign */
.services {
    background-color: var(--color-bg-light);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 101, 0.2);
}

.service-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 2rem;
    align-items: center;
}

.featured-header {
    text-align: left;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.service-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-body);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Redesign Service Details Grid as Flow (Vertical Timeline) */
.service-details-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 20px 0 20px 20px;
    position: relative;
}

/* The vertical thread line */
.service-details-grid::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 39px;
    /* Aligned with icon center (adjust based on padding+icon size) */
    width: 1px;
    background: rgba(197, 160, 101, 0.3);
    /* Accent color transparent */
    z-index: 0;
}

.service-details-grid li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-details-grid li:last-child {
    margin-bottom: 0;
}

.li-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    /* Hide line behind */
    border: 1px solid rgba(197, 160, 101, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-details-grid strong {
    display: block;
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.service-details-grid span {
    display: block;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Secondary Cards */
.service-secondary {
    text-align: center;
    padding: 2.5rem;
}

.service-secondary .icon-box-small {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.service-details-simple {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    /* align-items: center; */
    /* Center align for improved aesthetic in centered card */
}

.service-details-simple li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    width: 100%;
    max-width: 300px;
    /* Constrain width for centering */
}

.li-icon-simple {
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .service-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-featured .featured-header {
        text-align: center;
    }

    .service-featured .icon-box {
        margin: 0 auto 1.5rem auto;
    }
}

@media (max-width: 768px) {
    .services-layout {
        grid-template-columns: 1fr;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Us */
.why-us {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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


.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: rgba(0, 0, 0, 0.1);
    /* Dark translucent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    /* border-radius: 8px; */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.why-item p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

.why-summary {
    color: var(--color-white);
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Team */
.team-parallax {
    /* bg-team handles image */
    text-align: center;
}

.team-content-box {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    /* border-radius: 8px; */
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-white);
}

.team-content-box .section-title {
    color: var(--color-white);
}

.team-desc-p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.team-roles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-role-item {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: auto;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-role-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.team-role-item p {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Contact - Redesign */
.contact {
    background-color: var(--color-bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--color-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* border-radius: 12px; */
    overflow: hidden;
    min-height: 600px;
}

/* Left Column: Branding */
.contact-brand-col {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circle overlay */
.contact-brand-col::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-logo {
    width: 220px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    /* Ensure white logo on dark bg if logo is dark */
    opacity: 0.9;
    align-self: center;
}

.contact-headline {
    font-size: 2rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: var(--color-white);
}

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

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

/* Right Column: Form */
.contact-form-col {
    padding: 4rem;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.1);
}

.btn-block {
    width: 100%;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    color: #888;
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

/* Navbar Logo */
/* Navbar Logo */
.nav-logo {
    height: 120px;
    /* Much larger default height */
    width: auto;
    display: block;
    transition: all 0.4s ease;
    /* Smooth size transition */
    /* Optional: Brightness filter if logo is dark and needs to be white on hero */
    /* filter: brightness(0) invert(1); */
}

/* Navbar when menu is active on mobile */
.navbar.menu-active {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.menu-active .nav-toggle,
.navbar.menu-active .logo {
    color: var(--color-primary);
}

/* Shrink logo on scroll */
.navbar.scrolled .nav-logo {
    height: 50px;
}

/* Base Responsive adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-brand-col {
        padding: 3rem;
        text-align: center;
        align-items: center;
    }

    .contact-details {
        align-items: center;
        /* Center items on mobile */
    }

    .contact-form-col {
        padding: 3rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
        min-height: auto;
        /* Remove 100vh on mobile */
    }

    .parallax-section {
        min-height: auto;
        /* Remove 100vh on mobile */
        padding: 60px 20px;
    }

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

    .nav-logo {
        height: 80px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
        /* Control spacing via links */
    }

    .nav-link {
        color: var(--color-primary);
        text-shadow: none;
        padding: 12px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        display: block;
        /* Always open on mobile */
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.03);
    }

    .dropdown-content a {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    /* Remove hover display logic for mobile as it's static */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        order: 2;
    }

    .nav-toggle {
        display: block;
        order: 1;
        /* Move a bit to the left (by being first in order) */
    }

    .lang-switch {
        display: flex;
        order: 2;
        /* Put where the menu closed was */
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        width: auto;
    }

    .lang-btn {
        color: var(--color-white);
        font-size: 0.9rem;
    }

    .navbar.scrolled .lang-btn,
    .menu-active .lang-btn {
        color: var(--color-primary);
    }

    .lang-btn.active {
        color: var(--color-white);
        text-decoration: underline;
    }

    .navbar.scrolled .lang-btn.active,
    .menu-active .lang-btn.active {
        color: var(--color-primary);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .cta-group .btn {
        margin-bottom: 1.2rem;
    }

    .cta-group .btn:last-child {
        margin-bottom: 0;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .parallax-section,
    .hero {
        background-attachment: scroll;
        height: auto !important;
        min-height: 100vh;
        /* Default for full heroes */
        /* Disable parallax on mobile for performance */
    }

    .hero-inner {
        min-height: 400px !important;
        padding: 120px 0 60px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Services refinements - Increasing gaps and adding margins for Safari/Mobile visibility */
    .service-details-grid li {
        gap: 35px;
    }

    .service-details-grid .li-icon {
        margin-right: 5px;
        /* Extra breathing room */
    }

    .service-details-simple li {
        gap: 25px;
    }

    .service-details-simple .li-icon-simple {
        margin-right: 10px;
        /* Stronger separation */
    }

    .why-item {
        padding: 2rem;
    }

    .team-content-box {
        padding: 2.5rem 1.5rem;
    }

    .team-roles-grid {
        gap: 1rem;
        margin-top: 2rem;
    }

    .team-role-item {
        min-width: 140px;
        padding: 1rem;
    }

    .team-role-item p {
        font-size: 0.85rem;
    }

    .contact-brand-col {
        padding: 3rem 1.5rem;
    }

    .contact-form-col {
        padding: 3rem 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

/* Parallax Background Images */
.bg-hero {
    background-image: url('../assets/images/portada.jpg');
}

.bg-why {
    background-image: url('../assets/images/portada3.jpg');
}

.bg-team {
    background-image: url('../assets/images/madrid.webp');
}

/* --- Style Guide Specific Styles --- */
.style-guide-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.style-guide-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    border-left: 5px solid var(--color-secondary);
    padding-left: 1rem;
}

/* Color Palette */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.color-swatch {
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.swatch-display {
    height: 150px;
    width: 100%;
}

.swatch-info {
    padding: 1.5rem;
}

.swatch-name {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.swatch-hex {
    display: block;
    color: #666;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Typography */
.type-specimen {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.type-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.type-usage {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.type-examples h1,
.type-examples h2,
.type-examples p {
    margin-bottom: 1rem;
}

/* UI Components */
.component-group {
    background: white;
    padding: 3rem;
    /* border-radius: 8px; */
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #f0f0f0;
}