/* Base Variables & Reset */
        :root {
            --primary: #1a1a1a;
            --secondary: #D31334;/*#D31334*/
            --text: #1a1a1a;
            --text-light: #666666;
            --border: #e5e5e5;
            --bg-light: #f8f8f8;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --success: #059669;
            --primary-color: #4A4A4A;
            --secondary-color: #666666;
            --warm-gray-50: #FAFAF9;
            --warm-gray-100: #F5F5F4;
            --warm-gray-200: #E7E5E4;
            --warm-gray-300: #D6D3D1;
            --warm-gray-400: #A8A29E;
            --warm-gray-500: #78716C;
            --warm-gray-600: #57534E;
            --warm-gray-700: #44403C;
            --text-primary: #292524;
            --text-secondary: #44403C;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --spacing-unit: 8px;
        }    
        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Pretendard', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
             background-color: #fafafa; /* 따뜻한 베이지 배경 */
            color: #4a4a4a;
            line-height: 1.6;
            overflow-x: hidden;
        }

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


      

        .header {
            background-color: rgba(255, 255, 255, 0.98);
            padding: 20px 40px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.03);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 500;
            color: #1a1a1a;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 400;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: #666;
        }

        .main-visual {
            height: 100vh;
             background: linear-gradient(rgba(255, 252, 249, 0.82), rgba(255, 252, 249, 0.82)), url('/hp/images/pexels-yankrukov-5793788.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            margin-top: 60px;
        }

        .main-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            visibility: hidden;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 500;
            margin-bottom: 2.5rem;
            line-height: 1.4;
            color: #1a1a1a;
            letter-spacing: -1px;
             color: #3a3a3a;
        }

        .sub-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 3rem;
            line-height: 1.6;
            font-weight: 300;
            letter-spacing: -0.5px;
             color: #4a4a4a;
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #666;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

        .mission-section {
            padding: 150px 20px;
            background-color: #ffffff;
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .mission-text {
            padding: 20px;
            visibility: hidden;
        }

        .mission-title {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 3rem;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .mission-description {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-weight: 300;
            letter-spacing: -0.3px;
        }

        .highlight {
            color: #1a1a1a;
            font-weight: 500;
        }

        .mission-image-container {
            visibility: hidden;
        }

        .mission-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 2px;
         filter: sepia(10%) grayscale(80%); /* 따뜻한 톤의 흑백 효과 */
            opacity: 0.85;
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .nav-menu {
                display: none;
            }

            .mission-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .main-title {
                font-size: 2.5rem;
                font-weight: 500;
            }
            
            .sub-title {
                font-size: 1.4rem;
                font-weight: 300;
            }

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

            .mission-description {
                font-size: 1.1rem;
            }

            .mission-image {
                height: 300px;
                filter: sepia(10%) grayscale(80%); /* 따뜻한 톤의 흑백 효과 */
                opacity: 0.85;
            }
        }
          /* 새로운 섹션을 위한 스타일 추가 */
        .concept-section {
            padding: 150px 20px;
            background-color: #fafafa;
        }

        .concept-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            visibility: hidden;
        }

        .concept-title {
            font-size: 1.8rem;
            font-weight: 300;
            color: #333;
            margin-bottom: 2rem;
            line-height: 1.6;
            letter-spacing: -0.5px;
        }

        .concept-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 5rem;
            font-weight: 300;
            letter-spacing: -0.3px;
            line-height: 1.8;
        }

        .concept-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .concept-item {
            padding: 40px 20px;
            background: #ffffff;
            border: 1px solid #f0f0f0;
            visibility: hidden;
        }

        .concept-item h3 {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .concept-item p {
            font-size: 1.1rem;
            color: #666;
            font-weight: 300;
            letter-spacing: -0.3px;
            line-height: 1.6;
        }

        .concept-english {
            display: block;
            font-size: 1rem;
            color: #999;
            margin-top: 0.5rem;
            font-weight: 400;
            color: #8a8a8a;
        }

        @media (max-width: 768px) {
            .concept-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .concept-title {
                font-size: 1.5rem;
            }

            .concept-subtitle {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .concept-item {
                padding: 30px 20px;
            }
        }


        .highlight {
            color: #3a3a3a;
        }

       

        .main-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--primary-color);
            margin-bottom: calc(var(--spacing-unit) * 4);
            font-weight: 700;
            line-height: 1.2;
        }

        .sub-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--text-secondary);
            margin-bottom: calc(var(--spacing-unit) * 3);
            line-height: 1.5;
        }

        .company-name {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--warm-gray-600);
            font-weight: 500;
        }

        /* 스토리 섹션 스타일 */
        .story-section {
            padding: calc(var(--spacing-unit) * 12) 0;
            background: white;
        }

        .story-block {
            max-width: 800px;
            margin: 0 auto;
            padding: calc(var(--spacing-unit) * 6);
            background: var(--warm-gray-50);
            border-radius: 20px;
            margin-bottom: calc(var(--spacing-unit) * 6);
            box-shadow: var(--shadow-md);
        }

        .story-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .story-text:last-child {
            margin-bottom: 0;
        }
        /* 강조 섹션 스타일 */
       .emphasis-section {
    padding: calc(var(--spacing-unit)* 10) 0;
    position: relative;
    overflow: hidden;
}

	.emphasis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -400px;  /* 좌우 위치 조절 */
    width: 200%;   /* 이미지 폭을 더 넓게 */
    height: 130%;  /* 높이도 더 크게 */
        background: 
		             linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* 검은색 반투명 오버레이 */
		        url('/hp/images/pexels-ketut-subiyanto-4853876.jpg');
    background-size: cover;  /* 이미지가 영역을 꽉 채우도록 */
    background-position: center center;
    z-index: -1;
    transform: scale(1.2);  /* 이미지 전체적으로 확대 */
}
       .emphasis-content {
           max-width: 800px;
           margin: 0 auto;
           padding: calc(var(--spacing-unit) * 6);
           text-align: center;
       }

       .emphasis-text {
           font-size: clamp(1.5rem, 3vw, 2rem);
           color: var(--primary-color);
           line-height: 1.6;
           font-weight: 600;
           text-align: left;
           color: white;
       }
		
		
       /* 시대변화 섹션 스타일 */
       .change-section {
           padding: calc(var(--spacing-unit) * 12) 0;
           background: white;
       }

       .change-content {
           max-width: 800px;
           margin: 0 auto;
           padding: calc(var(--spacing-unit) * 4);
       }

       .change-text {
           font-size: 1.1rem;
           color: var(--text-secondary);
           line-height: 1.8;
           margin-bottom: calc(var(--spacing-unit) * 4);
       }

       .method-intro {
           font-size: 1.2rem;
           color: var(--text-primary);
           line-height: 1.8;
           margin: calc(var(--spacing-unit) * 6) 0;
           text-align: center;
       }

       /* 질문 섹션 스타일 */
       .questions-section {
           padding: calc(var(--spacing-unit) * 8) 0;
           background: var(--warm-gray-50);
       }

       .questions-grid {
           display: grid;
           grid-template-columns: repeat(3, 1fr);
           gap: calc(var(--spacing-unit) * 4);
           max-width: 900px;
           margin: 0 auto;
           padding: 0 20px;
       }

       .question-card {
           background: white;
           padding: calc(var(--spacing-unit) * 4);
           border-radius: 15px;
           text-align: center;
           box-shadow: var(--shadow-md);
           transition: all 0.3s ease;
       }

       .question-card:hover {
           transform: translateY(-5px);
           box-shadow: var(--shadow-lg);
       }

       .question-icon {
           font-size: 2rem;
           color: var(--warm-gray-500);
           margin-bottom: calc(var(--spacing-unit) * 2);
       }

       .question-text {
           font-size: 1.3rem;
           color: var(--text-primary);
           font-weight: 600;
       }

       /* 마무리 섹션 스타일 */
       .closing-section {
           padding: calc(var(--spacing-unit) * 12) 0;
           background: white;
       }

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

       .closing-text {
           font-size: 1.2rem;
           color: var(--text-secondary);
           line-height: 1.8;
           margin-bottom: calc(var(--spacing-unit) * 6);
       }

       .final-message {
           font-size: 1.8rem;
           color: var(--primary-color);
           font-weight: 600;
           margin-bottom: calc(var(--spacing-unit) * 8);
           line-height: 1.4;
       }

       .signature {
           font-style: italic;
           color: var(--warm-gray-600);
           font-size: 1.1rem;
       }

       @media (max-width: 768px) {
           .questions-grid {
               grid-template-columns: repeat(2, 1fr);
           }
           
           .story-block {
               padding: calc(var(--spacing-unit) * 4);
           }

           .emphasis-content {
               padding: calc(var(--spacing-unit) * 4);
           }
       }

       @media (max-width: 480px) {
           .questions-grid {
               grid-template-columns: 1fr;
           }
       }

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

        body {
            font-family: 'Noto Sans KR', sans-serif;
            line-height: 1.6;
            background-color: #ffffff;
            color: #000;
            overflow-x: hidden;
        }*/

        .section-title {
            text-align: center;
            padding: 120px 20px 80px;
            background: linear-gradient(to bottom, #ffffff, #f8f8f8);
            position: relative;
            z-index: 1;
        }

        .section-title h1 {
            font-size: 3.5em;
            color: #000;
            margin-bottom: 20px;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .section-title p {
            font-size: 1.4em;
            color: #666;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
        }

        .timeline {
            position: relative;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
        }

        .timeline-item {
            margin-bottom: 120px;
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .timeline-content {
            width: 45%;
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 55%;
        }

        .year {
            font-size: 42px;
            font-weight: 900;
            color: #000;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            letter-spacing: -1px;
        }

        .milestone .year {
            font-size: 52px;
            color: #000;
        }

        .icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #f8f8f8;
            border-radius: 12px;
            margin-right: 15px;
        }

        .timeline-content ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .timeline-content li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 15px;
            color: #444;
            font-size: 17px;
            line-height: 1.7;
            font-weight: 400;
        }

        .timeline-content li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            width: 6px;
            height: 6px;
            background: #000;
            border-radius: 50%;
        }

        .timeline-content li strong {
            color: #000;
            font-weight: 600;
        }

        .timeline-dot {
            width: 16px;
            height: 16px;
            background: #fff;
            border: 3px solid #000;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            top: 50px;
            transform: translateX(-50%);
            z-index: 2;
        }

        .milestone .timeline-dot {
            width: 24px;
            height: 24px;
            border-width: 4px;
        }

        .milestone .timeline-content {
            background: linear-gradient(to bottom right, #fff, #f9f9f9);
            border: 2px solid #000;
        }

        .keyword {
            color: #000;
            font-weight: 600;
            background: linear-gradient(transparent 60%, rgba(0,0,0,0.1) 40%);
            padding: 0 2px;
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
                padding: 30px;
            }

            .timeline-dot {
                left: 30px;
            }

            .timeline-item {
                margin-bottom: 60px;
            }

            .year {
                font-size: 32px;
            }

            .milestone .year {
                font-size: 38px;
            }

            .header h1 {
                font-size: 2.5em;
            }

            .header p {
                font-size: 1.1em;
            }
        }
    /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 2px;
            background: var(--secondary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        /* Mobile Menu */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-container {
            padding: 2rem;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-menu-link {
            color: var(--text);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 500;
        }

        /* Buttons */
        .btn-primary {
            padding: 1rem 2rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--border);
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: block;
        }

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

        .section-description {
            color: var(--text-light);
            font-size: 1.2rem;
            text-align: left;
            width: 100%;
            margin: 0 auto;
        }

    /* 기존 nav 스타일은 유지하고 드롭다운 관련 스타일 추가 */
    .nav-item {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        min-width: 180px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 8px 0;
        z-index: 1001;
        opacity: 0;
        transform: translateY(12px);
        transition: all 0.3s ease;
    }

    .nav-item:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-content a {
        color: var(--text);
        padding: 12px 20px;
        text-decoration: none;
        display: block;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .dropdown-content a:hover {
        background: var(--gray-50);
        color: var(--secondary);
        padding-left: 24px;
    }
/* 기존 nav 스타일은 유지 */
.nav-item {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 20px); /* 상단에서 20px 더 아래로 조정 */
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* 드롭다운 메뉴가 표시되기 전의 투명한 영역 추가 */
.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* 상단 여백과 동일한 높이 */
    background: transparent;
}

/* 드롭다운 화살표 추가 */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.nav-item:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-content a:hover {
    background: var(--gray-50);
    color: var(--secondary);
    padding-left: 24px;
}

/* 호버 시 nav-link 스타일 수정 */
.nav-item:hover .nav-link {
    color: var(--secondary);
}

/* 모바일 대응 스타일 */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: var(--gray-50);
        margin: 8px 0;
        transform: none;
    }

    .dropdown-content::before {
        display: none;
    }

    .nav-item.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .nav-item::after {
        display: none;
    }
}


  /* Footer */
        .footer {

            background: var(--primary);
            color: var(--white);
            padding: 6rem 0 2rem;
        }

        .footer-content {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 3fr 2fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo .logo {
            color: var(--white);
            font-size: 1.75rem;
        }

        .footer-logo p {
            color: var(--gray-400);
            margin-top: 1rem;
        }

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

        .footer-column h4 {
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

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

        .footer-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .footer-contact h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            color: var(--gray-400);
            margin-bottom: 0.75rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .social-links {
            margin-top: 1.5rem;
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--white);
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: var(--gray-400);
        }

        /* Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .contact-form {
                padding: 2rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-bottom {
                padding: 1.5rem 0;
            }
        }

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

        .mb-0 {
            margin-bottom: 0;
        }

        .text-gradient {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }