/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007BFF, #6c63ff);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Card Section */
.card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px auto;
    max-width: 1100px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-text {
    flex: 1;
    padding: 30px;
}

.card-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #007BFF;
}

.card-text p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.card-text button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.card-text button:hover {
    background-color: #0056b3;
}

.card-image {
    flex: 1;
    text-align: center;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 0 12px 12px 0;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
}

.feature {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature img {
    width: 80px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
}

.feature:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
    }

    .card-image img {
        border-radius: 0;
    }

    .features {
        flex-direction: column;
        gap: 15px;
    }

    .feature {
        flex: 1 1 100%;
    }
}
