:root {
    --primary: #1E4D8C;
    --secondary: #34B5B8;
    --accent: #E63946;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(45deg, var(--secondary), var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #FAFAFA;
    overflow-x: hidden;
}

.anywin-header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.anywin-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anywin-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.anywin-logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    color: transparent;
}

.anywin-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.anywin-menu {
    display: flex;
    gap: 40px;
}

.anywin-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.anywin-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.anywin-menu a:hover::after,
.anywin-menu .anywin-active::after {
    width: 100%;
}

.anywin-about-hero {
    padding: 160px 40px 100px;
    background: linear-gradient(135deg, rgba(30, 77, 140, 0.05) 0%, rgba(52, 181, 184, 0.05) 100%);
}

.anywin-about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.anywin-about-hero-text {
    padding-right: 40px;
}

.anywin-subtitle {
    display: inline-block;
    font-size: 18px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.anywin-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    transform: translateY(-50%);
}

.anywin-about-hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.anywin-about-hero-text p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
}

.anywin-about-hero-image {
    position: relative;
}

.anywin-about-hero-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.anywin-about-hero-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: 1;
}

.anywin-mission {
    padding: 100px 40px;
    background: var(--light);
}

.anywin-mission-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.anywin-mission-card {
    padding: 40px;
    background: #FFFFFF;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.anywin-mission-card:hover {
    transform: translateY(-10px);
}

.anywin-mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 24px;
    font-weight: 700;
}

.anywin-mission-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.anywin-mission-card p {
    color: #666;
    line-height: 1.8;
}

.anywin-timeline {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(30, 77, 140, 0.02) 0%, rgba(52, 181, 184, 0.02) 100%);
}

.anywin-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.anywin-section-header h2 {
    font-size: 40px;
    color: var(--dark);
    margin-top: 16px;
}

.anywin-timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.anywin-timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

.anywin-timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.anywin-timeline-item:nth-child(even) {
    direction: rtl;
}

.anywin-timeline-date {
    text-align: right;
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.anywin-timeline-item:nth-child(even) .anywin-timeline-date {
    text-align: left;
    direction: ltr;
}

.anywin-timeline-content {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    direction: ltr;
}

.anywin-timeline-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.anywin-timeline-content p {
    color: #666;
}

.anywin-team {
    padding: 100px 40px;
    background: var(--light);
}

.anywin-team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.anywin-team-card {
    text-align: center;
}

.anywin-team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.anywin-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anywin-team-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.anywin-team-card p {
    color: var(--secondary);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .anywin-about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .anywin-about-hero-text {
        padding-right: 0;
    }

    .anywin-about-hero-text p {
        margin: 0 auto;
    }

    .anywin-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .anywin-menu {
        display: none;
    }

    .anywin-about-hero {
        padding: 120px 20px 60px;
    }

    .anywin-about-hero-text h1 {
        font-size: 40px;
    }

    .anywin-timeline-container::before {
        left: 0;
    }

    .anywin-timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .anywin-timeline-date {
        text-align: left;
    }

    .anywin-timeline-item:nth-child(even) {
        direction: ltr;
    }

    .anywin-timeline-item:nth-child(even) .anywin-timeline-date {
        text-align: left;
    }
}

.anywin-footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
}

.anywin-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
}

.anywin-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.anywin-footer-info {
    max-width: 500px;
}

.anywin-footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.anywin-footer-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 16px;
}

.anywin-footer-links {
    display: grid;
    gap: 20px;
    padding-top: 8px;
}

.anywin-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.anywin-footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.anywin-footer-links a:hover {
    color: var(--secondary);
}

.anywin-footer-links a:hover::after {
    width: 100%;
}

.anywin-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.anywin-footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

@media (max-width: 768px) {
    .anywin-footer {
        padding: 60px 20px 30px;
    }

    .anywin-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .anywin-footer-info {
        max-width: 100%;
    }

    .anywin-footer-links {
        padding-top: 0;
    }
} 