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

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary: #565a5d;
            --primary-foreground: #ffffff;
            --secondary: #f5f3f0;
            --secondary-foreground: #565a5d;
            --accent: #c9a563;
            --accent-foreground: #565a5d;
            --background: #ffffff;
            --foreground: #48515d;
            --muted: #f8f6f3;
            --muted-foreground: #888888;
            --border: #e5e0db;
            --card: #ffffff;
            --card-foreground: #48515d;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid rgba(229, 224, 219, 0.6);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        header > div {
            margin: 0 auto;
            display: flex;
            height: 80px;
            max-width: 1792px;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--primary);
            flex-shrink: 0;
            cursor: pointer;
        }

        .logo svg {
            height: 32px;
            width: 32px;
            flex-shrink: 0;
        }

        .logo-text {
            line-height: 1;
        }

        .logo-text-main {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 0.22em;
        }

        .logo-text-sub {
            margin-top: 4px;
            font-size: 6px;
            font-weight: 500;
            letter-spacing: 0.35em;
            opacity: 0.7;
        }

        nav {
            display: none;
            align-items: center;
            gap: 32px;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            color: rgba(72, 81, 93, 0.8);
            transition: color 0.3s;
        }

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

        .btn-get-started {
            display: none;
            padding: 12px 24px;
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            border-radius: 2px;
            transition: background-color 0.3s;
        }

        .btn-get-started:hover {
            background-color: rgba(86, 90, 93, 0.9);
        }

        .menu-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            border-radius: 6px;
            color: var(--foreground);
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            nav {
                display: flex;
            }

            .btn-get-started {
                display: inline-flex;
            }

            .menu-button {
                display: none;
            }
        }

/* Hero Section */
        section#hero {
            position: relative;
            overflow: hidden;
            min-height: 640px;
            display: flex;
            align-items: center;
            background-image: url('../images/professional-portrait.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        section#hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: linear-gradient(to right, var(--background) 0%, rgba(255, 255, 255, 0.7) 60%, transparent 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1792px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 96px 20px;
            max-width: 640px;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 500;
            line-height: 1.05;
            color: var(--primary);
            margin-bottom: 32px;
        }

        .hero-box {
            background: rgba(255, 255, 255, 0.85);
            padding: 28px;
            backdrop-filter: blur(4px);
        }

        .hero-box p:first-child {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            color: var(--foreground);
            margin-bottom: 16px;
        }

        .hero-box p:last-of-type {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-foreground);
            margin-bottom: 24px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            border-radius: 2px;
            background-color: var(--primary);
            color: var(--primary-foreground);
            padding: 14px 28px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: rgba(86, 90, 93, 0.9);
        }

        /* Intro Band */
        .intro-band {
            background-color: var(--primary);
            color: var(--primary-foreground);
            padding: 96px 20px;
            text-align: center;
        }

        .intro-band-content {
            max-width: 1344px;
            margin: 0 auto;
        }

        .intro-band p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 48px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            border-radius: 2px;
            background-color: var(--primary-foreground);
            color: var(--primary);
            padding: 14px 32px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: background-color 0.3s;
        }

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

        /* Privacy Section */
        .privacy-section {
            background-color: var(--background);
            padding: 96px 20px;
        }

        .privacy-content {
            max-width: 1536px;
            margin: 0 auto;
        }

        .privacy-header {
            max-width: 768px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .privacy-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .privacy-header p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-foreground);
            margin-bottom: 16px;
        }

        .pillars {
            display: grid;
            gap: 48px;
            grid-template-columns: 1fr;
            margin-bottom: 64px;
        }

        @media (min-width: 768px) {
            .pillars {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pillar {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .pillar-icon {
            width: 48px;
            height: 48px;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .pillar h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .pillar p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-foreground);
            max-width: 320px;
        }

        .privacy-quote {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            font-style: italic;
            color: var(--primary);
            margin-top: 64px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Section */
        .services-section {
            background-color: var(--secondary);
            padding: 96px 20px;
        }

        .services-content {
            max-width: 1536px;
            margin: 0 auto;
        }

        .services-header {
            max-width: 512px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .section-tag {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: rgba(72, 81, 93, 0.7);
            margin-bottom: 12px;
        }

        .services-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 500;
            color: var(--primary);
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 64px;
        }

        .service-item {
            display: grid;
            gap: 40px;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .service-item {
                grid-template-columns: 1fr 1fr;
            }
        }

        .service-item.reverse {
            direction: rtl;
        }

        .service-item.reverse > * {
            direction: ltr;
        }

        .service-image {
            position: relative;
            padding-bottom: 75%;
            background: #e0e0e0;
            overflow: hidden;
            border-radius: 4px;
        }

        .service-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 500;
            color: var(--primary);
            margin-top: 12px;
            margin-bottom: 16px;
        }

        .service-info p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-foreground);
            margin-bottom: 24px;
        }

        .service-points {
            list-style: none;
            margin-bottom: 16px;
        }

        .service-points li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--foreground);
            margin-bottom: 8px;
        }

        .service-points li::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Process Section */
        .process-section {
            background-color: var(--background);
            padding: 96px 20px;
        }

        .process-content {
            max-width: 1536px;
            margin: 0 auto;
        }

        .process-header {
            max-width: 512px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .process-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 500;
            color: var(--primary);
            margin-top: 12px;
        }

        .process-steps {
            display: grid;
            gap: 32px;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .process-steps {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .process-step {
            border-top: 2px solid var(--accent);
            padding-top: 24px;
        }

        .process-step-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 500;
            color: var(--accent);
        }

        .process-step h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--primary);
            margin-top: 12px;
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-foreground);
        }

        /* Insights Section */
        .insights-section {
            background-color: var(--background);
            padding: 0 20px 96px;
        }

        .insights-box {
            max-width: 1536px;
            margin: 0 auto;
            border: 1px solid var(--border);
            background-color: var(--card);
            padding: 32px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 768px) {
            .insights-box {
                padding: 48px;
                display: flex;
                gap: 24px;
                align-items: flex-end;
                justify-content: space-between;
            }
        }

        .insights-box-content {
            max-width: 800px;
        }

        .insights-box h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 500;
            color: var(--primary);
            margin-top: 16px;
            margin-bottom: 12px;
        }

        .insights-box p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-foreground);
            margin-bottom: 24px;
        }

        .insights-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: text-decoration 0.3s;
        }

        .insights-link:hover {
            text-decoration: none;
        }

        .insights-read-time {
            font-size: 12px;
            font-style: italic;
            color: var(--muted-foreground);
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--secondary);
            padding: 96px 20px;
        }

        .testimonials-content {
            max-width: 1536px;
            margin: 0 auto;
        }

        .testimonials-section h2 {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 56px;
        }

        .testimonials-grid {
            display: grid;
            gap: 40px;
            grid-template-columns: 1fr;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .testimonial-image {
            position: relative;
            padding-bottom: 75%;
            background: #e0e0e0;
            overflow: hidden;
            border-radius: 4px;
        }

        .testimonial-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-content blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            line-height: 1.4;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .testimonial-author {
            font-size: 14px;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 4px;
        }

        .testimonial-role {
            font-size: 14px;
            color: var(--muted-foreground);
            margin-bottom: 32px;
        }

        .testimonial-nav {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--primary);
            border-radius: 50%;
            transition: background-color 0.3s, color 0.3s;
        }

        .testimonial-btn:hover {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }

        .testimonial-dots {
            display: flex;
            gap: 8px;
            margin-left: 8px;
        }

        .testimonial-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--border);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .testimonial-dot.active {
            background-color: var(--primary);
        }

        /* News Band */
        .news-band {
            background-color: var(--primary);
            color: var(--primary-foreground);
            padding: 56px 20px;
        }

        .news-band-content {
            max-width: 1536px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .news-band-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .news-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .news-outlets {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .news-outlets {
                justify-content: flex-start;
            }
        }

        .news-outlets span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            position: relative;
            overflow: hidden;
            padding: 112px 20px;
            background: rgba(86, 90, 93, 0.85);
            text-align: center;
            color: var(--primary-foreground);
        }

        .contact-content {
            max-width: 768px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .contact-section h2 {
                font-size: 48px;
            }
        }

        .contact-section p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 36px;
            opacity: 0.9;
            max-width: 448px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .contact-buttons {
                flex-direction: row;
            }
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            border-radius: 2px;
            padding: 14px 32px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: all 0.3s;
        }

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

        .btn-contact-primary:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        .btn-contact-secondary {
            border: 1px solid rgba(255, 255, 255, 0.6);
            background: transparent;
            color: var(--primary-foreground);
        }

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

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--primary-foreground);
            padding: 64px 20px;
        }

        .footer-content {
            max-width: 1792px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            gap: 48px;
            grid-template-columns: 1fr;
            margin-bottom: 56px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-col-main {
            grid-column: span 1;
        }

        @media (min-width: 1024px) {
            .footer-col-main {
                grid-column: span 2;
            }
        }

        .footer-col-main p {
            margin-top: 20px;
            max-width: 448px;
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .footer-address {
            margin-top: 20px;
            font-size: 14px;
            font-style: normal;
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-address a {
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-address a:hover {
            opacity: 1;
        }

        .footer-col h3 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.7;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col a {
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-col a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 14px;
            opacity: 0.8;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .footer-bottom nav {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-bottom a {
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-bottom a:hover {
            opacity: 1;
        }

        @media (max-width: 1023px) {
            .hero-title {
                font-size: 40px;
            }

            .intro-band p {
                font-size: 24px;
            }

            .privacy-header h2 {
                font-size: 32px;
            }

            .services-header h2 {
                font-size: 32px;
            }

            .process-header h2 {
                font-size: 32px;
            }

            .testimonials-section h2 {
                font-size: 32px;
            }

            .contact-section h2 {
                font-size: 32px;
            }
        }

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

        .legal-page h1 {
            color: var(--primary);
            font-size: 52px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .legal-page h2 {
            color: var(--primary);
            font-size: 28px;
            font-weight: 500;
            margin-top: 40px;
            margin-bottom: 12px;
        }

        .legal-page p {
            color: var(--muted-foreground);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .legal-page a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

.legal-page .legal-updated {
            color: var(--muted-foreground);
            font-size: 13px;
        }

        .legal-page ul {
            margin: 0 0 18px 20px;
            color: var(--muted-foreground);
            font-size: 15px;
            line-height: 1.8;
        }

        .legal-page ul li {
            margin-bottom: 8px;
        }
