:root {
    --main-color: #FF4B2B;
    --dark-color: #2D3436;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
}

.hero {
    background: linear-gradient(135deg, #fff 50%, #fff5f2 100%);
    padding: 100px 0;
}

.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
}

    .btn-primary:hover {
        background-color: #e03e22;
        border-color: #e03e22;
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    width: 120px;
}

    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

.footer {
    background-color: var(--dark-color);
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

    .footer-link:hover {
        color: var(--main-color);
        padding-left: 5px;
    }

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

    .social-icons a:hover {
        background: var(--main-color);
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 25px;
    font-size: 0.9rem;
    color: #95a5a6;
}