body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0e0d0d;
    color: #f2f2f2;
    line-height: 1.6;
}

.learn-more-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: #f603a5;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #aaa;
}

.details {
    margin-bottom: 30px;
}

.details h2 {
    font-size: 2rem;
    color: #f603a5;
    margin-bottom: 10px;
}

.details p {
    font-size: 1rem;
    color: #ddd;
}

.details ul {
    list-style: disc;
    margin: 10px 0 10px 20px;
    color: #aaa;
}

.details ul li {
    margin-bottom: 5px;
}

.contact-us {
    text-align: center;
    margin-top: 20px;
}

.contact-us .btn {
    display: inline-block;
    background-color: #f603a5;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-us .btn:hover {
    background-color: #ff66cc;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: hsla(300, 4%, 9%, 0.997);
    color: #fff;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out; /* Entire section fades in */
}

.container {
    display: flex;
    min-width: 100%;
    width: 100%;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out; /* Smooth entry for content */
}

.content-side h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: zoomIn 1.2s ease-in-out; /* Title zooms in */
}

.content-side p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out; /* Paragraph fades in */
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out; /* Image fades in smoothly */
}

.form-side {
    flex: 1;
    background-color: #333;
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    animation: bounceIn 1.5s ease-in-out; /* Form bounces in */
}

.form-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: zoomIn 1s ease-in-out; /* Title zooms in */
}

label {
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
    animation: fadeIn 0.8s ease-in-out; /* Labels fade in */
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #f7f4f4;
    color: #000;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
    animation: fadeIn 1.2s ease-in-out; /* Inputs fade in */
}

input:focus, textarea:focus {
    background-color: #555;
    outline: none;
    transform: scale(1.02); /* Slight zoom effect on focus */
}

textarea {
    resize: vertical;
    height: 150px;
}

button.submit-btn {
    background-color: #f805d4;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    animation: fadeIn 1.5s ease-in-out; /* Button fades in */
}

button.submit-btn:hover {
    background-color: #f905f1c0;
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-side, .form-side {
        flex: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    .content-side h1 {
        font-size: 2rem;
    }

    .form-side h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .content-side h1 {
        font-size: 1.8rem;
    }

    .content-side p {
        font-size: 1rem;
    }

    .form-side h2 {
        font-size: 1.6rem;
    }

    input, textarea {
        padding: 10px;
    }

    button.submit-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
