/* CSS Variables */
:root {
    --primary-color: #2C3E2C;
    --background-color: #FFFFFF;
    --header-height: 90px;
    --header-padding: 165px;
    --icon-size: 26px;
    --logo-width: 85px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
}

/* Header */
.header {
    width: 100%;
    height: var(--header-height);
    background-color: var(--background-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 100%;
    height: 100%;
    padding: 0 var(--header-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Hamburger Menu */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 40px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    opacity: 0.7;
}

.hamburger-line {
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu:hover .hamburger-line {
    background-color: #4A5F4A;
}

/* Logo */
.logo {
    position: absolute;
    left: 245px;
    display: flex;
    align-items: center;
}

.logo img {
    width: var(--logo-width);
    height: auto;
    display: block;
}

/* Decorative Curves */
.decorative-curves {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.decorative-curves svg {
    width: 100%;
    height: 100%;
}

/* Search Button */
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn i {
    font-size: var(--icon-size);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.search-btn:hover i {
    color: #4A5F4A;
    transform: scale(1.1);
}

/* Slide Down Menu */
.slide-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #F5F5F5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slide-menu.active {
    max-height: 700px;
    overflow-y: auto;
}

.slide-menu-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px var(--header-padding);
}

/* Left Side - Navigation List */
.main-nav {
    width: 100%;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-item {
    border-bottom: 1px solid #E0E0E0;
}

.nav-item:first-child {
    border-top: 1px solid #E0E0E0;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    padding-left: 15px;
}

.nav-link span {
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 12px;
    color: #999999;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Right Side - Featured Articles */
.featured-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-card {
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.article-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #F0F5F0 0%, #E8EFE8 100%);
    overflow: hidden;
}

.decorative-pattern {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.decorative-pattern svg {
    width: 100%;
    height: 100%;
}

.article-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    font-size: 12px;
    font-style: italic;
    color: #666;
    margin-bottom: 8px;
}

.article-category {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0 0 20px 0;
    flex: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: var(--primary-color);
    gap: 15px;
}

.article-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Hamburger Menu Active State */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* 首页英雄区 */
.hero-section {
    width: 100%;
    height: 100vh;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 全屏背景视频 */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* 视频遮罩层 - 添加半透明遮罩以提升文字可读性 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--header-padding);
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* 英雄区内容 */
.hero-content {
    max-width: 700px;
    padding: 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-link {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    width: fit-content;
}

.hero-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFFFFF;
    transition: width 0.3s ease;
}

.hero-link:hover {
    color: #FFFFFF;
}

.hero-link:hover::after {
    width: 100%;
}

.hero-tag {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    padding-bottom: 5px;
    display: inline-block;
    width: fit-content;
}

/* About Section */
.about-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--header-padding);
}

.about-content {
    max-width: 900px;
}

.about-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.about-link:hover {
    color: var(--primary-color);
    gap: 18px;
}

.about-link:hover::after {
    width: calc(100% - 30px);
}

.about-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Stats Section */
.stats-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 0;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px var(--header-padding);
}

/* Left Side - Stats Image */
.stats-image {
    width: 600px;
    height: 400px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.stats-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Side - Stats Content */
.stats-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #8BA888;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-description {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}

/* Stats Link */
.stats-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.stats-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.stats-link:hover {
    color: var(--primary-color);
    gap: 18px;
}

.stats-link:hover::after {
    width: calc(100% - 30px);
}

.stats-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* News Section */
.news-section {
    width: 100%;
    background-color: #FFFFFF;
}

.news-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--header-padding);
}

.news-section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.news-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #D0D0D0;
}

.news-category {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.news-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex: 1;
}

.news-description {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 25px;
    width: fit-content;
}

.news-link:hover {
    color: var(--primary-color);
    gap: 15px;
}

.news-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* View All Button */
.news-view-all {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    border: 1px solid #D0D0D0;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    gap: 18px;
}

.view-all-btn i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Talent Section */
.talent-section {
    width: 100%;
    background-color: #F8F8F8;
    padding: 0;
}

.talent-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Side - Talent Image */
.talent-image {
    width: 600px;
    height: 650px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.talent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Side - Talent Content */
.talent-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.talent-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.talent-description {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.talent-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.talent-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.talent-link:hover {
    color: var(--primary-color);
    gap: 18px;
}

.talent-link:hover::after {
    width: calc(100% - 30px);
}

.talent-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid #E0E0E0;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px var(--header-padding);
}

/* Footer Top */
.footer-top {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.footer-access {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-access-link {
    color: #999;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-access-link:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #F0F0F0;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.5px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav-link {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: #D0D0D0;
    font-size: 11px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --header-padding: 80px;
    }
    
    .logo {
        left: 170px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-content {
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .slide-menu-content {
        grid-template-columns: 400px 1fr;
        gap: 30px;
    }
    
    .featured-articles {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-content {
        max-width: 550px;
    }
    
    .hero-tag {
        font-size: 17px;
    }
    
    .hero-container {
        padding: 0 80px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .stats-title {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stats-container {
        padding: 60px 80px;
        gap: 40px;
    }
    
    .stats-image {
        width: 500px;
        height: 350px;
    }
    
    .news-section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .news-grid {
        gap: 30px;
    }
    
    .news-card {
        padding: 30px;
    }
    
    .talent-container {
        gap: 40px;
    }
    
    .talent-image {
        width: 500px;
        height: 550px;
    }
    
    .talent-title {
        font-size: 36px;
    }
    
    .talent-description {
        font-size: 16px;
    }
    
    .footer-container {
        padding: 40px 80px;
    }
    
    .footer-nav {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-padding: 40px;
        --header-height: 70px;
        --logo-width: 70px;
    }
    
    .logo {
        left: 120px;
    }
    
    .decorative-curves {
        width: 200px;
        height: 80px;
    }
    
    .slide-menu-content {
        grid-template-columns: 1fr;
        padding: 30px 40px;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 18px 0;
    }
    
    .nav-link:hover {
        padding-left: 10px;
    }
    
    .featured-articles {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 15px;
    }
    
    .hero-container {
        padding: 0 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    
    .hero-tag {
        font-size: 16px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .stats-container {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }
    
    .stats-image {
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
    
    .stats-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    
    .news-section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .news-card {
        padding: 25px;
        min-height: auto;
    }
    
    .news-title {
        font-size: 17px;
    }
    
    .talent-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .talent-image {
        width: 100%;
        max-width: 600px;
        height: 500px;
    }
    
    .talent-title {
        font-size: 30px;
    }
    
    .talent-description {
        font-size: 15px;
    }
    
    .footer-container {
        padding: 35px 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}

.cookie-modal.show {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s ease;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: relative;
    background-color: #FFFFFF;
    max-width: 536px;
    width: 90%;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.cookie-modal-body {
    margin-bottom: 30px;
}

.cookie-modal-text {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cookie-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-manage-link {
    font-size: 14px;
    font-weight: 500;
    color: #5B7BB4;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.cookie-manage-link:hover {
    color: #4A6AA0;
    text-decoration: underline;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    flex: 1;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-btn-refuse {
    background-color: transparent;
    border: 1px solid #D0D0D0;
    color: var(--primary-color);
}

.cookie-btn-refuse:hover {
    background-color: #F5F5F5;
    border-color: #B0B0B0;
}

.cookie-btn-accept {
    background-color: #5B7BB4;
    color: #FFFFFF;
}

.cookie-btn-accept:hover {
    background-color: #4A6AA0;
}

/* Cookie Modal Responsive */
@media (max-width: 768px) {
    .cookie-modal-content {
        padding: 30px;
        max-width: 90%;
    }
    
    .cookie-modal-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .cookie-modal-text {
        font-size: 13px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-modal-content {
        padding: 25px;
        width: 95%;
    }
    
    .cookie-modal-title {
        font-size: 18px;
    }
    
    .cookie-modal-text {
        font-size: 12px;
    }
    
    .cookie-manage-link {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-padding: 20px;
        --header-height: 60px;
        --logo-width: 60px;
        --icon-size: 22px;
    }
    
    .logo {
        position: static;
        margin-left: 20px;
    }
    
    .decorative-curves {
        display: none;
    }
    
    .hamburger-menu {
        width: 44px;
        height: 36px;
    }
    
    .slide-menu-content {
        padding: 20px;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 16px 0;
    }
    
    .nav-link:hover {
        padding-left: 8px;
    }
    
    .article-image {
        height: 160px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 14px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .hero-tag {
        font-size: 15px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .about-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .about-link {
        font-size: 13px;
    }
    
    .stats-container {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .stats-image {
        width: 100%;
        height: 300px;
    }
    
    .stats-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label,
    .stat-description {
        font-size: 13px;
    }
    
    .stats-link {
        font-size: 12px;
    }
    
    
    .news-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .news-card {
        padding: 20px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-link,
    .view-all-btn {
        font-size: 12px;
    }
    
    .view-all-btn {
        padding: 12px 30px;
    }
    
    .talent-container {
        gap: 30px;
    }
    
    .talent-image {
        width: 100%;
        height: 400px;
    }
    
    .talent-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .talent-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .talent-link {
        font-size: 13px;
    }
    
    .footer-container {
        padding: 30px 20px;
    }
    
    .footer-top {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-access {
        font-size: 11px;
    }
    
    .footer-copyright,
    .footer-nav-link {
        font-size: 10px;
    }
}

