

html body{
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.header{
    display: flex;
    align-items: center;
    padding: 31px 100px;
    height: 122px;
    box-sizing: border-box;

}

.logo {
    flex: 0 0 auto;
    margin-right: 40px;
    width: 140px;
    height: 60px;

}

.burger-menu{
    display: none;
}
.nav{
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 60px;
    font-size: 20px;
}

.nav a{
    text-decoration: none;
    cursor: pointer;
    color: black;
}

.main{
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    min-height: 600px;
}

.main-text{
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.main-h1{
    font-size: 45px;
    margin-top: 10px;

}

.main-p{
    font-size: 24px;
    font-style: italic;
    margin-top: 60px;
    margin-bottom: 60px;
}

.main-button{
    width: 250px;
    background-color: black;
    border-color: white;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 21px;
    transition: 0.7s ease;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
}

.main-button:hover{
    border: 1px solid rgb(239, 13,13, 0.8);
    box-shadow: 0px 4px 14px rgba(239, 13,13, 0.3);

    transform: scale(1.1);
}


.service{
    padding: 0 100px;
    align-items: center;
    justify-content: center;
}
.service-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 70px;

}

.service-box{
    border:1px solid rgb(239, 13,13, 0.1);
    border-radius: 8px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
    padding: 20px 40px 20px 20px;
    transition: 0.7s ease;
}

.service-box:hover{
    border: 1px solid rgb(239, 13,13, 0.8);
    box-shadow: 0px 4px 14px rgba(239, 13,13, 0.3);

    transform: scale(1.1);
}

.service-box-contact{
    border:1px solid rgb(239, 13,13, 0.6);
    border-radius: 8px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
    padding: 20px 40px 20px 20px;
}



.service-box h3{
    font-size: 18px;
}

.service-box p{
    font-size: 17px;
}

.service-box-contact button{
    background-color: #ED1F24;
    color: white;
    border-color: #ED1F24;
    border-radius: 5px;
    padding: 8px;
    font-size: 15px;
    cursor: pointer;
}

.service-h2{
    text-align: center;
    margin-top: 70px;
    font-size: 36px;
}



.benefits{
    padding: 0 100px ;
    background-color: #FAFBFB;
    text-align: center;
}

.benefits-h2{
    font-size: 36px;
    padding-top: 50px;
}

.benefits-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom:70px;
}

.benefits-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
    transition: 0.7s ease;
}

.benefits-box:hover{
    transform: scale(1.1);
}

.benefits-box img{
    max-width: 47px;
    height: 47px;
}

.benefits-box h3{
    font-size: 20px;
    margin-bottom: 6px;
}

.benefits-box p{
    font-size: 18px;
}



.brand-protection{
    padding: 0 100px;
    background-color: rgba(34, 32, 32, 1);
    color: white;

}

.brand-container{

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;



}

.brand-text{
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.brand-text h1{
    font-size: 48px;
    padding-top: 50px;
}

.brand-text p{
    font-size: 22px;
}

.brand-text h3{
    font-size: 20;
    color: #ED1F24;
    padding-bottom: 50px;
}

.brand-image{
    position: absolute;
    bottom: -110px;
    left: 55%;
    z-index: 1;

}

.brand-image img{
    width: 100%;
    max-width: 500px;


}



.contact{
    background-color: #fff;
    padding: 150px 100px 70px ;
    text-align: center;
}

.contact-container{
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.contact-text{
    font-size: 1.1rem;
    flex: 1 1 65%;
}

.contact-button{
    background-color: #ED1F24;
    color: white;
    padding: 16px 16px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    flex: 1 1 25%;
    border-color: #ED1F24;
    cursor: pointer;
}

.faq {
    background-color: #f9f9f9;
    padding: 20px 100px ;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #222;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 20px;
    padding: 15px 0;
    color: #444;
    cursor: pointer;
    outline: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #000;
}

.faq-answer {
    max-height: 0;
    padding: 0 0 15px 0;
    font-size: 16px;
    color: #666;
    text-decoration: none;
}

.footer-faq button{
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
}


.faq-answer p {
    margin: 0;
    padding-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.footer-container {

    padding: 50px 100px ;
    background-color: #1a1a1a;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    width: 140px;
    height: 60px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    text-transform: capitalize;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-column ul li img {
    width: 16px;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    color: #999;
    font-size: 14px;
}

.footer-bottom img {
    width: 14px;
    vertical-align: middle;
    margin-right: 5px;
}




@media (max-width: 430px) {

    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .header,
    .main,
    .service,
    .benefits,
    .brand-protection,
    .contact,
    .footer-container,
    .faq {
        padding-left: 40px !important;
        padding-right: 40px !important;
        box-sizing: border-box;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        box-sizing: border-box;
    }

    .logo{

        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;


    }

    .logo img{
        width: 100px;
    }


    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 25px;
        cursor: pointer;
        position: relative;
    }


    .main {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: black;
        color: white;
        min-height: 600px;
        padding: 0 40px;
        text-align: center;
    }

    .main-image {
        display: none;
    }

    .main-text {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .main-h1 {
        font-size: 32px;
        margin-top: 50px;
    }

    .main-p {
        font-size: 18px;
        margin: 30px 0;
        font-style: italic;
    }

    .main-button {

        width: 209px;
        padding: 10px;
        font-size: 16px;
        margin-bottom: 60px;
        background-color: black;
        border: 1px solid white;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.7s ease;
    }

    .main-button:hover {
        border-color: rgba(239, 13, 13, 0.8);
        box-shadow: 0px 4px 14px rgba(239, 13, 13, 0.3);
        transform: scale(1.1);
    }

    .service  {
        padding: 0 40px;

    }

    .service-h2{
        font-size: 20px;
    }

    .service-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
        justify-items: center;
        margin-bottom: 40px;
    }

    .service-box{
        margin-top: 40px;
    }

    .service-box-contact{
        margin-top: 40px;
    }

    .benefits, .brand-protection, #contact, .footer-container, .faq{
        align-items: center;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 40px;
        justify-items: center;
        align-items: center;
    }

    .benefits-h2{
        font-size: 20px;
        margin-top: 40px;
    }

    .brand-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .benefits-box{
        margin-top: 40px;
    }

    .brand-image {
        position: absolute;
        bottom: -400px;
        width: 80%;
        left: 9%;
        z-index: 1;
    }

    .brand-protection{
        padding-bottom: 300px;
    }

    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-text {
        text-align: center;
    }

    .contact-button {
        width: 100%;
    }


    .faq{
        padding-bottom: 70px;
    }

    .faq h2 {
        font-size: 26px;

    }

    .faq-question {
        font-size: 18px;
        margin-top: 30px;
        text-decoration: none !important;
    }

    .faq-answer {
        font-size: 15px;
        text-decoration: none !important;
    }


    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    .footer-logo img {
        margin: 0 auto 10px auto;

    }
    .footer-column-info {
        width: 100%;
    }
}
