* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

header {
    background: #fff;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 42px;
    font-weight: 900;
    color: #e4002b;
    letter-spacing: -2px;
}

nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #e4002b;
}

.hero {
    background: linear-gradient(135deg, #fff 50%, #f1f1f1 50%);
    padding: 90px 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #e4002b;
    color: #fff;
}

.btn-primary:hover {
    background: #c80025;
}

.btn-light {
    background: #ececec;
    color: #222;
}

.btn-light:hover {
    background: #ddd;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-call {
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-call i {
    font-size: 16px;
}

.btn-call:hover {
    background: #e4002b;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn,
    .hero-btns .btn-call {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #111;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card i {
    font-size: 40px;
    color: #e4002b;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    margin-bottom: 20px;
}

.card a {
    color: #e4002b;
    font-weight: 600;
}

.contact-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
}

.contact-info a {
    color: #e4002b;
    font-weight: 600;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

footer {
    background: #111;
    color: #ddd;
    padding: 60px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-column a {
    display: block;
    color: #bbb;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #888;
    font-size: 14px;
}

.footer-column a i {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e4002b;
    transform: translateY(-3px);
}

@media (max-width: 991px) {

    .hero,
    .contact-box,
    .cards,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    .hero,
    .cards,
    .contact-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .logo {
        font-size: 36px;
    }

    nav {
        justify-content: center;
    }
}