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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #111;
    line-height: 1.5;
    font-weight: 400;
}

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

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

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

.logo {
    font-weight: 600;
    font-size: 18px;
}

.nav__link {
    color: #666;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav__link:first-child {
    margin-left: 0;
}

.nav__link:hover {
    color: #000;
}

/* Hero */
.hero {
    background: url('./imgs/1.png') center center/cover no-repeat;
    padding: 80px 0 40px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.hero__title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    max-width: 900px;
}

/* Section Titles */
.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 8px;
}

/* Stats */
.stats__container {
    background-color: #f8f8f8;
    padding: 40px 20px 60px;
}

.stats__items {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.stats__item {
    background: #e6e6e6;
    padding: 25px 20px;
    flex: 1 1 30%;
    min-width: 250px;
    border-radius: 4px;
}

.stats__number {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.stats__description {
    font-weight: 400;
    font-size: 14px;
}

/* Services */
.services__container {
    padding: 40px 0 60px;
}

.services__items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 25px 20px;
    flex: 1 1 30%;
    min-width: 280px;
    border-radius: 6px;
}

.service h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service p {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
}

/* Reviews */
.reviews__container {
    padding: 20px 0 60px;
}

.reviews__items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.review {
    background: #000;
    color: #fff;
    padding: 20px;
    flex: 1 1 30%;
    border-radius: 6px;
    min-width: 280px;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review__author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review__author strong {
    font-weight: 700;
    font-size: 1rem;
}

/* Articles */
.articles__container {
    padding: 20px 0 60px;
}

.articles__items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article {
    background: #000;
    color: #fff;
    padding: 20px;
    flex: 1 1 30%;
    border-radius: 6px;
    min-width: 280px;
}

.article h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.article p {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
}

/* Contact */
.contact__container {
    background: #000;
    padding: 40px 20px;
}

.contact__form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__form input,
.contact__form textarea {
    background: #222;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    resize: vertical;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: #aaa;
}

.contact__form textarea {
    min-height: 90px;
}

.contact__form button {
    background: #fff;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact__form button:hover {
    background-color: #ccc;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    padding: 20px 0;
}

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

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footer__nav .nav__link {
    color: #ccc;
    margin-left: 30px;
    font-size: 14px;
}

.footer__nav .nav__link:first-child {
    margin-left: 0;
}

.footer__nav .nav__link:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    justify-content: center;
}

.footer__policy {
    color: #777;
    text-decoration: none;
    white-space: nowrap;
}

.footer__policy:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .stats__items,
    .services__items,
    .reviews__items,
    .articles__items {
        flex-direction: column;
        gap: 20px;
    }
    .nav__link {
        margin-left: 15px;
        font-size: 13px;
    }
    .hero__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .header__container,
    .footer__top {
        flex-direction: column;
        gap: 15px;
    }
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero__title {
        font-size: 1.4rem;
        text-align: center;
    }
    .hero__subtitle {
        font-size: 12px;
        text-align: center;
    }
}
