/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav__logo span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav__menu {
    display: flex;
    list-style: none;
}

.nav__menu li {
    margin-left: 20px;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav__link:hover,
.nav__link.active {
    color: #e63946;
}

.nav__burger {
    display: none;
    cursor: pointer;
}

.nav__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 60px;
    background-color: #0c0c0c;
}



a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    transition: color 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
  }
  
  a:hover {
    color: #ff0000;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero__text {
    flex: 1;
    max-width: 50%;
}

.hero__welcome {
    font-size: 1.2rem;
    color: #e63946;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.hero__title--accent {
    color: #e63946;
}

.hero__description {
    font-size: 1.1rem;
    color: #fff;
    margin: 20px 0;
}

.hero__btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.hero__image {
    flex: 1;
    max-width: 50%;
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero__scroll {
    text-align: center;
    margin-top: 40px;
}

.hero__scroll span {
    color: #fff;
    font-size: 0.9rem;
}

.hero__scroll-line {
    width: 40px;
    height: 3px;
    background-color: #e63946;
    margin: 10px auto;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.section-title .accent {
    color: #e63946;
}

.content__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.content__item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.content__item:hover {
    transform: translateY(-5px);
}

.content__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.content__title i {
    margin-right: 10px;
    color: #e63946;
    font-size: 1.5rem;
}

.content__text {
    font-size: 1rem;
    color: #555;
}

.content__btn {
    display: block;
    margin: 40px auto 0;
    text-align: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn--primary {
    background-color: #e63946;
    color: #fff;
}

.btn--primary:hover {
    background-color: #d62828;
}

.btn--secondary {
    background-color: #fff;
    color: #e63946;
    border: 2px solid #e63946;
}

.btn--secondary:hover {
    background-color: #e63946;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer__section {
    margin-bottom: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer__logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer__logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer__description {
    font-size: 0.9rem;
    color: #ccc;
}

.footer__section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer__section ul li i {
    margin-right: 10px;
    color: #e63946;
    font-size: 1.2rem;
}

.footer__section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__section ul li a:hover {
    color: #e63946;
}

.footer__bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer__bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        padding: 20px;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__menu li {
        margin: 10px 0;
    }

    .nav__burger {
        display: block;
    }

    .hero__content {
        flex-direction: column;
    }

    .hero__text,
    .hero__image {
        max-width: 100%;
        text-align: center;
    }

    .hero__image {
        margin-top: 20px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .content__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content__title {
        font-size: 1.3rem;
    }
}