.navbar__menu a {
    color: #000;
}

.intro-section {
    padding: 8rem 2rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.intro-title {
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -3.2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.intro-description {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.125rem;
    color: #555;
}

/* Articles Section */
.articles-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.articles-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    display: flex;
    background: #fff;
    border-radius: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.article-image {
    width: 600px;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
    aspect-ratio: 4/3;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-title {
    font-size: 1.7rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.article-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.read-more {
    align-self: flex-start;
    background-color: #111;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.4rem;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 768px) {
    .article-card {
    flex-direction: column;
    text-align: center;
    }

    .article-image {
    width: 100%;
    height: auto;
    }

    .article-content {
    align-items: center;
    }

    .read-more {
    align-self: center;
    }
}


.contact {
    background-color: #b4bdbc;
    padding: 60px 20px;
}
.contact-card {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}
.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.contact-card button {
    background: #111;
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: monospace;
    cursor: pointer;
    border-radius: 5px;
}