:root {
    --gold: #FFD700;
    --gold-light: #FFF8DC;
    --deep-black: #0a0a0a;
    --line-green: #00C300;
    --line-green-hover: #00A000;
    --sky-blue: #87CEEB;
    --charcoal: #2C2C2C;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.gold-gradient {
    background: linear-gradient(45deg, var(--gold), #FFA500);
}

.text-gold {
    color: var(--gold);
}

.bg-deep-black {
    background-color: var(--deep-black);
}

.text-line-green {
    color: var(--line-green);
}

.bg-line-green {
    background-color: var(--line-green);
}

.bg-line-green:hover {
    background-color: var(--line-green-hover);
}

.text-sky-blue {
    color: var(--sky-blue);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-enhanced {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

/* Enhanced floating particles effect */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.particle-gold {
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFED4E);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    animation-duration: 6s;
}

.particle-silver {
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #C0C0C0, #E5E5E5, #F8F8FF);
    box-shadow: 0 0 4px rgba(192, 192, 192, 0.5);
    animation-duration: 4s;
}

.particle-rose {
    width: 2.5px;
    height: 2.5px;
    background: linear-gradient(45deg, #E8B4B8, #D4AF37, #F7DC6F);
    box-shadow: 0 0 6px rgba(232, 180, 184, 0.4);
    animation-duration: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-20px) translateX(5px) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) scale(1.2);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(8px) scale(0.9);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 0.05em;
}

.hero-divider {
    height: 4px;
    width: 120px;
    margin: 0 auto 2rem auto;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    min-width: 200px;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: var(--gold);
    color: black;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-btn-secondary {
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(12px); opacity: 1; }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-divider {
    height: 4px;
    width: 80px;
    margin: 0 auto 3rem auto;
}

/* Salon Section Styles */
.salon-intro {
    margin-bottom: 4rem;
}

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

.intro-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: black;
}

.intro-divider {
    width: 100px;
    height: 3px;
    margin: 0 auto 2rem auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.intro-text p {
    margin-bottom: 1rem;
}

.takeda-work {
    margin-bottom: 4rem;
}

.work-header {
    text-align: center;
    margin-bottom: 3rem;
}

.work-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: black;
}

.work-divider {
    width: 100px;
    height: 3px;
    margin: 0 auto;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.work-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.work-card {
    background: linear-gradient(to bottom right, #f9f9f9, white);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.work-card-title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.work-card-content {
    color: #666;
    line-height: 1.7;
}

.work-card-content p {
    margin-bottom: 1rem;
}

.work-card-en {
    color: #888 !important;
    font-size: 0.95rem;
}

/* Gallery Styles */
.work-gallery {
    display: flex;
    flex-direction: column;
}

.gallery-main {
    position: relative;
    background: black;
    margin-bottom: 1rem;
}

.gallery-main img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(0,0,0,0.7);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-thumb {
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.gallery-thumb.active {
    opacity: 1;
    border: 2px solid var(--gold);
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 128px;
    object-fit: cover;
}

/* Awards Section */
.awards-section {
    margin-top: 3rem;
    background: var(--deep-black);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.awards-title {
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

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

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.award-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.award-main {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-sub {
    color: #ccc;
    font-size: 0.9rem;
}

/* Salon Info Section */
.salon-info-section {
    margin-top: 4rem;
    background: linear-gradient(to bottom right, #1a1a1a, black);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.salon-info-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

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

.salon-info-item {
    text-align: center;
}

.salon-info-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.salon-info-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.salon-info-item p {
    font-size: 0.9rem;
}

.salon-booking {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
}

.salon-booking p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.line-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Consulting Section */
.consulting-section {
    background: #f5f5f5;
}

.consulting-subtitle {
    font-size: 1.5rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1rem;
}

.consulting-brand {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.consulting-tagline {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
}

.consulting-tagline p {
    margin-bottom: 0.5rem;
}

.consulting-overview {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.overview-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.consulting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.consulting-details {
    margin-bottom: 4rem;
}

.details-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: black;
}

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

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--gold);
}

.detail-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.detail-purpose {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.detail-content {
    font-size: 0.9rem;
    color: #666;
}

.detail-content p {
    margin-bottom: 0.5rem;
}

.consulting-benefits {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-item {
    text-align: center;
}

.benefit-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
}

.consulting-pricing {
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: black;
}

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

.pricing-plan {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--gold);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-header h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: black;
}

.plan-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.plan-original {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.plan-special {
    color: #e74c3c;
    font-size: 0.8rem;
}

.plan-features {
    padding: 2rem;
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.plan-features i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.consulting-flow {
    background: var(--deep-black);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.flow-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

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

.flow-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-weight: bold;
    font-size: 1.2rem;
}

.flow-step h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.flow-step p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Produce Section */
.produce-subtitle {
    font-size: 1.5rem;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1rem;
}

.produce-brand {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.produce-tagline {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
}

.produce-tagline p {
    margin-bottom: 0.5rem;
}

.produce-overview {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.overview-en {
    color: #888 !important;
    font-size: 0.95rem;
}

.produce-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.2rem;
}

.service-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.produce-flow {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.produce-target {
    background: var(--deep-black);
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

.target-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

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

.target-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: scale(1.05);
}

.target-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.target-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Profile Section */
.profile-section {
    background: #f5f5f5;
}

.profile-intro {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.profile-image img {
    width: 100%;
    height: 514px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.profile-content {
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.profile-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: black;
}

.profile-title {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.profile-text {
    color: #666;
    line-height: 1.7;
}

.profile-text p {
    margin-bottom: 1rem;
}

.profile-en {
    color: #888 !important;
    font-size: 0.95rem;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    background: var(--deep-black);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
}

.profile-business {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.business-item {
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.business-item:nth-child(2) {
    background: #f9f9f9;
}

.business-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

.business-content {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

.business-point {
    margin-bottom: 1.5rem;
}

.business-point p {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--deep-black);
    color: white;
}

.contact-intro {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-subtitle {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.05);
    transform: scale(1.02);
}

.contact-icon {
    font-size: 1.3rem;
    margin-top: 0.25rem;
}

.contact-details h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #ccc;
}

.contact-desc {
    margin-bottom: 1rem !important;
}

.protected-email {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: inherit;
    text-align: left;
    padding: 0;
}

.protected-email:hover {
    color: var(--gold);
}

.salon-location h3 {
    margin-bottom: 2rem;
}

.salon-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.salon-name {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.salon-note {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.salon-address {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.salon-details {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.salon-details p {
    margin-bottom: 0.5rem;
}

.detail-label {
    color: var(--gold);
    font-weight: 600;
}

.salon-note-bottom {
    text-align: center;
}

.salon-note-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--deep-black);
    border-top: 1px solid #333;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .work-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .produce-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .profile-stats {
        flex-direction: column;
        align-items: center;
    }

    .consulting-features,
    .details-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}