body {
    background-color: #f8f9fa;
    font-family: "Poppins";
    color: #2c3e50;
    line-height: 1.6;
}

.header-container {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 1px;
}

.login-btn {
    padding: 8px 25px;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid #d51c48;
    color: #d51c48;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #d51c48;
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    /* padding: 80px 0; */
    background-color: white;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.cta-button {
    background-color: #d51c48;
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    margin-top: 10px;
    transition: all 0.3s;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(231, 76, 60, 0.2);
}

.cta-button:hover {
    background-color: #d51c48;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    /* margin-top: 50px; */
}

.footer-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header-container .row {
        text-align: center;
    }

    .logo-text {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-section {
        padding: 50px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-image {
        margin-top: 40px;
        max-width: 80%;
    }

    .login-btn {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}
