/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and container styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Container for centering all content */
.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInBackground 2s ease-in-out;
}

/* Logo Section */
.logo-section {
    margin-top: 10px; /* Reduced gap from the top */
}

.logo {
    max-width: 200px;
    height: auto;
    animation: dropIn 1.5s ease-in-out;
}

/* Heading and Subheading */
.text-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 15px 0; /* Adjusted gap between logo and heading */
    margin-top: 4px;
    animation: fadeInText 1.5s ease-in-out;
}

.text-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    animation: fadeInText 1.5s ease-in-out;
}

/* Continue Button */
.continue-btn-section {
    margin-bottom: 20px;
}

.continue-btn {
    text-decoration: none;
    background-color: #1e73be;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 115, 190, 0.3);
}

.continue-btn:hover {
    background-color: #155d8e;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(21, 93, 142, 0.4);
}

/* Bottom Images Section */
.images-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.bottom-img {
    width: 220px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-img-care {
    width: 260px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.bottom-img-care:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo {
        max-width: 150px;
    }

    .text-section h1 {
        font-size: 28px;
    }

    .text-section p {
        font-size: 16px;
    }

    .continue-btn {
        padding: 10px 25px;
        font-size: 16px;
    }

    .bottom-img {
        width: 60px;
        height: 40px;
    }
}

/* Animations */
@keyframes fadeInBackground {
    from {
        background-color: #e6e9f0;
    }
    to {
        background-color: #f4f7fc;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes dropIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
