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

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background: #1e1e1e;
    color: #d4d4d4;
    line-height: 1.6;
}

.site-container {
    max-width: 1300px;
    margin: 0 auto;
}

.top-bar {
    background: #252526;
    padding: 1.5rem 0;
    border-bottom: 2px solid #3e3e42;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #4ec9b0;
    letter-spacing: 1px;
}

.top-menu {
    display: flex;
    gap: 2rem;
}

.top-menu a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.top-menu a:hover {
    color: #4ec9b0;
}

.hero-zone {
    background: linear-gradient(135deg, #1e1e1e 0%, #252526 50%, #2d2d30 100%);
    padding: 7rem 2.5rem;
    text-align: center;
    border-bottom: 3px solid #3e3e42;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: #0e639c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: 3.8rem;
    color: #4ec9b0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-button {
    background: #0e639c;
    color: #ffffff;
    padding: 1.3rem 4rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Courier New', monospace;
}

.hero-button:hover {
    background: #1177bb;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 99, 156, 0.4);
}

.team-zone {
    padding: 5rem 2.5rem;
    background: #252526;
}

.zone-title {
    font-size: 2.7rem;
    text-align: center;
    color: #4ec9b0;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

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

.member-card {
    background: #1e1e1e;
    border: 2px solid #3e3e42;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.member-card:hover {
    border-color: #4ec9b0;
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(78, 201, 176, 0.3);
}

.member-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid #3e3e42;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    color: #4ec9b0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-info p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
}

.services-zone {
    padding: 5rem 2.5rem;
    background: #1e1e1e;
}

.services-showcase {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-box {
    background: #252526;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #3e3e42;
    border-top: 4px solid #0e639c;
    transition: all 0.3s;
}

.service-box:hover {
    background: #2d2d30;
    border-color: #4ec9b0;
    transform: translateY(-5px);
}

.service-box h4 {
    color: #4ec9b0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-box p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
}

.bottom-bar {
    background: #252526;
    padding: 2.5rem 0;
    border-top: 2px solid #3e3e42;
    margin-top: 4rem;
}

.bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-text {
    color: #cccccc;
    font-size: 0.95rem;
}

.bottom-link {
    color: #4ec9b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.bottom-link:hover {
    color: #6ed4c0;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .team-showcase,
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
}

.articles-zone {
    padding: 5rem 2.5rem;
    background: #1e1e1e;
    border-top: 3px solid #3e3e42;
}

.zone-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.articles-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.article-box {
    background: #252526;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #3e3e42;
    transition: all 0.3s;
}

.article-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(78, 201, 176, 0.3);
    border-color: #4ec9b0;
}

.article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #4ec9b0;
}

.article-box h4 {
    color: #4ec9b0;
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.article-date {
    color: #6ed4c0;
    font-size: 0.9rem;
    margin: 0 1.5rem 1rem;
    font-weight: 600;
}

.article-box p {
    color: #d4d4d4;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 1.5rem 1rem;
}

.article-link {
    color: #4ec9b0;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    transition: color 0.3s;
}

.article-link:hover {
    color: #6ed4c0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .top-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .articles-showcase {
        grid-template-columns: 1fr;
    }
}

