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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #222222;
    color: #ffffff;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.hero-section {
    padding: 80px 0 60px 0;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
}

h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.feature-item img {
    height: 40px;
}

.feature-item span {
    color: #e32636;
    font-size: 18px;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(-10deg);
}

main {
    flex: 1;
}



.footer-section {
    background-color: #e32636;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-text p {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 850px) {
    .hero-container, .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
        margin-top: 30px;
    }

    .feature-item {
        align-items: center;
    }

    .features-grid {
        text-align: left;
    }
}

@media (min-width: 851px) {
    .container {
        max-width: 1650px;
        padding: 0 30px;
    }

    .hero-section {
        padding: 120px 0 90px 0;
    }

    .hero-container {
        gap: 60px;
    }

    .hero-content {
        max-width: 825px;
    }

    .logo {
        max-width: 375px;
        margin-bottom: 45px;
    }

    h1 {
        font-size: 69px;
        margin-bottom: 30px;
        letter-spacing: 1.5px;
    }

    .description {
        font-size: 30px;
        margin-bottom: 60px;
    }

    .features-grid {
        gap: 45px 30px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-item img {
        height: 60px;
    }

    .feature-item span {
        font-size: 27px;
    }

    .footer-section {
        padding: 60px 0;
    }

    .footer-container {
        gap: 45px;
    }

    .footer-text p {
        font-size: 27px;
        margin-bottom: 15px;
    }

    .contact-info {
        gap: 32px;
    }

    .contact-item {
        gap: 22px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-item a {
        font-size: 30px;
    }
}
