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

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

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

/* Color Palette */
:root {
    --primary-purple: #4a148c;
    --secondary-green: #2e7d32;
    --accent-purple: #6a1b9a;
    --accent-green: #388e3c;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-purple: rgba(74, 20, 140, 0.8);
}

/* Phone Consultation Popup */
.phone-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.phone-popup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    border: 2px solid var(--primary-purple);
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.phone-popup-header {
    background: var(--primary-purple);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.phone-popup-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.phone-popup-content {
    padding: 24px;
}

.phone-info {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-purple);
}

.phone-info i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-right: 16px;
    width: 40px;
    text-align: center;
}

.phone-details h4 {
    margin: 0 0 8px 0;
    color: var(--primary-purple);
    font-size: 1rem;
    font-weight: 600;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    font-family: 'Courier New', monospace;
}

.phone-hours {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.popup-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.popup-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.popup-actions .btn-primary:hover {
    background: var(--accent-purple);
    transform: translateY(-1px);
}

.popup-actions .btn-secondary {
    background: var(--text-gray);
    color: white;
}

.popup-actions .btn-secondary:hover {
    background: #555;
    transform: translateY(-1px);
}

/* Terms and Privacy Pages */
.terms-content,
.privacy-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.terms-section,
.privacy-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 20, 140, 0.1);
}

.terms-section h2,
.privacy-section h2 {
    color: var(--primary-purple);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-purple);
}

.terms-section h3,
.privacy-section h3 {
    color: var(--accent-purple);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 25px 0 15px 0;
}

.terms-section p,
.privacy-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul,
.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li,
.privacy-section li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-section li:last-child,
.privacy-section li:last-child {
    margin-bottom: 0;
}

/* Privacy Officer Section */
.privacy-officer,
.privacy-request,
.privacy-agencies {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-purple);
    margin: 20px 0;
}

.privacy-officer h3,
.privacy-request h3,
.privacy-agencies h3 {
    color: var(--primary-purple);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.privacy-officer p,
.privacy-request p,
.privacy-agencies p {
    margin-bottom: 10px;
}

.privacy-officer strong,
.privacy-request strong,
.privacy-agencies strong {
    color: var(--primary-purple);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-section,
    .privacy-section {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .terms-section h3,
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .privacy-officer,
    .privacy-request,
    .privacy-agencies {
        padding: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-content .container {
        padding: 0 15px;
        align-items: center;
        text-align: center;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -25%);
        width: 100%;
        max-width: none;
    }
    
    .banner-title {
        font-size: 2.2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .phone-popup {
        width: 95%;
        margin: 20px;
    }
    
    .phone-info {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-info i {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-actions .btn {
        width: 100%;
    }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
    color: var(--text-light);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
    visibility: visible;
    opacity: 1;
    display: block;
}

.top-bar-text {
    margin: 0;
    letter-spacing: 0.5px;
}

.preliminary-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    margin: 0 4px;
    display: inline-block;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
    color: var(--text-light);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-text {
    margin: 0;
    letter-spacing: 0.5px;
}

.preliminary-status {
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 700;
    margin: 0 6px;
    display: inline-block;
}

.close-topbar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-topbar:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

/* Header adjustments for top bar (top bar removed) */
.header {
    margin-top: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(74, 20, 140, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Hamburger menu - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    margin-left: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Desktop Navigation - Always visible */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Desktop Navigation - Always show menu */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        flex-direction: row !important;
        background-color: transparent !important;
        width: auto !important;
        text-align: left !important;
        transition: none !important;
        box-shadow: none !important;
        gap: 2rem !important;
        padding: 0 !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

.nav-logo h1 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
    color: var(--text-light);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-text {
    margin: 0;
    letter-spacing: 0.5px;
}

.preliminary-status {
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 700;
    margin: 0 6px;
    display: inline-block;
}

.close-topbar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-topbar:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

/* Header adjustments for top bar (top bar removed) */
.header {
    margin-top: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.8) 0%, rgba(106, 27, 154, 0.8) 100%), url('../images/hero/semiconductor-facility-clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/hero/network-infrastructure-clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.8) 0%, rgba(46, 125, 50, 0.8) 100%), url('../images/hero/cloud-transformation-clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide:nth-child(4) {
    background: linear-gradient(135deg, rgba(56, 142, 60, 0.8) 0%, rgba(74, 20, 140, 0.8) 100%), url('../images/hero/business-innovation-clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide:nth-child(5) {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.8) 0%, rgba(46, 125, 50, 0.8) 100%), url('../images/hero/corporate-strategy-clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide:nth-child(6) {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(106, 27, 154, 0.8) 100%), url('../images/hero/tech-consulting-clean.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Enhanced rolling animation for hero slides */
/* Ken Burns effect for rolling background images */
@keyframes kenBurns {
    0% {
        transform: scale(1.05) translate(0, 0);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.banner-slide.active {
    opacity: 1;
}

/* Smooth content animation when slide becomes active */
.banner-slide.active .banner-content {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced overlay for better text readability */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

/* Desktop specific positioning for perfect alignment */
@media (min-width: 769px) {
    .banner-content .container {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -30%);
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
    }
    
    /* Ensure all banner content starts from exact same position */
    .banner-slide:nth-child(1) .banner-content .container,
    .banner-slide:nth-child(2) .banner-content .container,
    .banner-slide:nth-child(3) .banner-content .container,
    .banner-slide:nth-child(4) .banner-content .container,
    .banner-slide:nth-child(5) .banner-content .container,
    .banner-slide:nth-child(6) .banner-content .container {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -30%);
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

/* Ensure consistent positioning for all banner content */
.banner-content .container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    transform: translateX(0);
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
}

/* Force all banner content to start from exact same position */
.banner-slide:nth-child(1) .banner-content .container,
.banner-slide:nth-child(2) .banner-content .container,
.banner-slide:nth-child(3) .banner-content .container,
.banner-slide:nth-child(4) .banner-content .container,
.banner-slide:nth-child(5) .banner-content .container,
.banner-slide:nth-child(6) .banner-content .container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Consistent animation starting point for all banners */
.banner-slide .banner-content {
    transform: translateX(0);
    transition: transform 0.8s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Ensure all banner content starts from exact same vertical position */
.banner-slide .banner-content .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.banner-slide.active .banner-content.animate-in {
    transform: translateX(0);
}

/* Ensure all banner titles and subtitles start from same position */
.banner-content h2,
.banner-content p {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Specific fix for consistent vertical alignment */
.banner-content h2 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.banner-content p {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
}

.banner-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: 0;
    padding-left: 0;
}
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.3);
}

.btn-primary:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 20, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-purple);
    transform: translateY(-2px);
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.slide-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.indicator.active {
    background: var(--accent-green);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(56, 142, 60, 0.6);
}

.banner-arrows {
    display: flex;
    gap: 1rem;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.arrow-btn:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 1rem;
        padding: 2rem 0;
        display: flex !important;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .preliminary-status {
        padding: 1px 6px;
        font-size: 11px;
    }
    
    .top-bar-text {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .top-bar-text {
        font-size: 11px;
    }
    
    .preliminary-status {
        display: block;
        margin: 4px auto 0;
        width: fit-content;
    }
}
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 1rem;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 250px;
    }

    .banner-nav {
        flex-direction: column;
        gap: 1rem;
        bottom: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .nav-logo h1 {
        font-size: 1.5rem;
    }
}