/* 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;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #D2B48C; /* Warm beige color matching logo */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background-color: #D2B48C;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #ffffff;
    color: #D2B48C;
    border-color: #ffffff;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23f0f0f0"/><rect x="0" y="200" width="1200" height="400" fill="%23ffffff"/><rect x="100" y="250" width="1000" height="300" fill="%23e0e0e0" stroke="%23cccccc" stroke-width="2"/><rect x="150" y="300" width="200" height="200" fill="%23d4b896"/><rect x="400" y="300" width="200" height="200" fill="%23d4b896"/><rect x="650" y="300" width="200" height="200" fill="%23d4b896"/><rect x="900" y="300" width="200" height="200" fill="%23d4b896"/><text x="600" y="150" text-anchor="middle" font-family="Arial" font-size="48" fill="%23333">MIRAE PARTNER</text><text x="600" y="200" text-anchor="middle" font-family="Arial" font-size="24" fill="%23666">전문적인 물류 서비스</text></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 184, 150, 0.8) 0%, rgba(180, 150, 120, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 600px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background-color: #ffffff;
    color: #D4B896;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Company Introduction Section */
.company-intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.intro-top {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.intro-top h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.intro-top p {
    font-size: 1.2rem;
    color: #333;
    text-align: left;
    line-height: 1.8;
    max-width: 800px;
}

.intro-bottom {
    flex: 1;
    background-color: #D2B48C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.story-bg-section {
    background-image: url('images/company-intro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.story-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 184, 150, 0.8) 0%, rgba(196, 168, 132, 0.7) 100%);
    z-index: 1;
}

.story-bg-section .container {
    position: relative;
    z-index: 2;
}

.story-bg-section .intro-text p {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.intro-text {
    flex: 1;
    padding-right: 40px;
}

.intro-text p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    text-align: left;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.person-image {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
    transition: transform 0.3s ease;
}

.person-image:hover {
    transform: scale(1.05);
}

/* Story Sections */
.story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.story-section:nth-child(even) {
    background-color: #f8f9fa;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.2rem;
    color: #D4B896;
    font-weight: 500;
    margin-bottom: 20px;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logistics-facility {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logistics-facility:hover {
    transform: scale(1.05);
}

.businessman-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.businessman-image:hover {
    transform: scale(1.05);
}

/* Service Section */
.service-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-header h3 {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.05);
}



.card-content {
    padding: 30px;
}

.card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Storage Section */
.storage-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.storage-header {
    text-align: center;
    margin-bottom: 80px;
}

.storage-header h3 {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 20px;
}

.storage-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.storage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.storage-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.storage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.storage-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.storage-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.storage-image:hover {
    transform: scale(1.05);
}



.storage-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

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

/* A/S Section */
.as-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.as-header {
    text-align: center;
    margin-bottom: 80px;
}

.as-header h3 {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 20px;
}

.as-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.as-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.as-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.as-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.as-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.as-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.as-image:hover {
    transform: scale(1.05);
}



.as-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Education Section */
.education-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.education-header {
    text-align: center;
    margin-bottom: 50px;
}

.education-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.education-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.education-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.education-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(212, 184, 150, 0.3);
    transition: all 0.3s ease;
}

.education-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 184, 150, 0.4);
}



.education-content {
    max-width: 350px;
}

.education-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.education-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
}

/* Notice Section */
.notice-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.notice-header {
    text-align: center;
    margin-bottom: 50px;
}

.notice-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.notice-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.admin-link {
    display: none;
    background-color: #D4B896;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background-color: #C4A884;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 184, 150, 0.3);
}





/* Notice List Styles */
.notice-list {
    max-width: 800px;
    margin: 0 auto;
}

.notice-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.notice-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.notice-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.notice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.notice-meta .author {
    font-weight: 600;
    color: #D4B896;
}

.notice-meta .date {
    color: #999;
    font-size: 0.9rem;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4B896;
    margin-bottom: 20px;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #D2B48C;
    color: #ffffff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-info p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-label {
    font-weight: 600;
    color: #ffffff;
    min-width: 60px;
    margin-right: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-value {
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    flex: 1;
}

.footer-copyright p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Company Intro Responsive */
    .intro-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-text {
        padding-right: 0;
        text-align: center;
    }
    
    .story-bg-section .intro-text p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .intro-top h2 {
        font-size: 2.5rem;
    }
    
    .intro-top p {
        text-align: center;
    }
    
    .person-image {
        width: 300px;
        height: 300px;
    }
    
    /* Story Sections Responsive */
    .story-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .logistics-facility,
    .businessman-image {
        height: 300px;
    }
    
    /* Service Section Responsive */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    /* Storage Section Responsive */
    .storage-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .storage-header h2 {
        font-size: 2rem;
    }
    
    .storage-card {
        padding: 30px 20px;
    }
    
    .storage-icon {
        height: 100px;
    }
    
    /* A/S Section Responsive */
    .as-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .as-header h2 {
        font-size: 2rem;
    }
    
    .as-card {
        padding: 30px 20px;
    }
    
    .as-icon {
        height: 100px;
    }
    
    /* Education Section Responsive */
    .education-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .education-image {
        height: 250px;
    }
    
    .education-content {
        max-width: 100%;
    }
    
    .education-header h2 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Company Intro Mobile */
    .intro-top h2 {
        font-size: 2rem;
    }
    
    .intro-top p {
        font-size: 1rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .story-bg-section .intro-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-info h3 {
        font-size: 1.1rem;
    }
    
    .footer-info p,
    .footer-copyright p {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .contact-label {
        min-width: 50px;
        margin-right: 8px;
    }
    
    .person-image {
        width: 250px;
        height: 250px;
    }
    
    /* Story Sections Mobile */
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .logistics-facility,
    .businessman-image {
        height: 250px;
    }
    
    /* Service Section Mobile */
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .service-header h3 {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h4 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    /* Storage Section Mobile */
    .storage-header h2 {
        font-size: 1.8rem;
    }
    
    .storage-header h3 {
        font-size: 1rem;
    }
    
    .storage-card {
        padding: 25px 15px;
    }
    
    .storage-content h4 {
        font-size: 1.3rem;
    }
    
    .storage-content p {
        font-size: 0.9rem;
    }
    
    .storage-icon {
        height: 80px;
    }
    

    
    /* A/S Section Mobile */
    .as-header h2 {
        font-size: 1.8rem;
    }
    
    .as-header h3 {
        font-size: 1rem;
    }
    
    .as-card {
        padding: 25px 15px;
    }
    
    .as-content h4 {
        font-size: 1.3rem;
    }
    
    .as-icon {
        height: 80px;
    }
    

    
    /* Education Section Mobile */
    .education-image {
        height: 200px;
    }
    
    .education-content h3 {
        font-size: 1.3rem;
    }
    
    .education-content p {
        font-size: 0.9rem;
    }
    
    .education-header h2 {
        font-size: 1.8rem;
    }
    

    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
.content-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button hover effects */
.nav-menu a,
.cta-button {
    position: relative;
    overflow: hidden;
}

.nav-menu a::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-menu a:hover::before,
.cta-button:hover::before {
    left: 100%;
}ㅊㅇ 
