* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    text-align: center;
}

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

header h1 {
    font-size: 2.5rem;
    color: #0056b3;
}

header h2 {
    font-size: 1.8rem;
    color: #333;
}

/* Space between sections */
section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px; /* Increased margin to separate sections */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px; /* Constrain the width */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

p, ul, table {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Center and space out lists */
ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left; /* Left-align lists for readability */
    margin: 0 auto;
    display: inline-block; /* Center lists */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #0056b3;
    color: #fff;
}

.register-btn {
    display: inline-block;
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 15px;
}

.razorpay-button {
    margin-top: 20px;
}

a{
    font-weight: bold;
    color: #0056b3;
    text-decoration: none;
}

/* Image Section */
.image-section {
    text-align: center;
    margin-bottom: 30px; /* Increased margin to separate from the next section */
}

.center-image {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-section, .footer {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.support-section {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.support-section .logos {
    background-color: white;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.support-section .logo {
    background-color: white;
    width: 100px;
    height: auto;
    margin-top: 10px;
}

.about-facilitator-section {
    background-color: white; /* Light background */
    padding: 20px 20px; /* Padding around the content */
    margin-bottom: 30px; /* Space at the bottom */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-facilitator-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.facilitator-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Wrap if on smaller screens */
    gap: 20px; /* Space between image and text */
}

.facilitator-image {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circle image */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Shadow around the image */
}

.facilitator-details {
    text-align: left; /* Align text left */
    max-width: 600px;
}

.facilitator-details h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #0056b3;
}

.credentials-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.linktree-btn {
    display: inline-block;
    background-color: #28a745; /* Green background */
    color: #fff; /* White text */
    padding: 10px 20px; /* Padding around the button */
    margin-top: 15px; /* Space above the button */
    border-radius: 5px; /* Rounded corners */
    font-size: 1.1rem; /* Font size */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s ease; /* Smooth color change on hover */
}

.linktree-btn:hover {
    background-color: #218838; /* Darker green on hover */
    color: #fff;
}

.whatsappgroup {
    background-color: #098e02; /* Blue background */
    color: #fff; /* White text */
    padding: 30px 20px; /* Padding around the content */
    margin-bottom: 30px; /* Space at the bottom of the section */
    text-align: center; /* Center-align text */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for a floating effect */
    max-width: 900px; /* Constrain the section's width */
    margin-left: auto; /* Center the section horizontally */
    margin-right: auto; /* Center the section horizontally */
}

.whatsappgroup h3 {
    font-size: 1.8rem; /* Slightly large heading */
    margin-bottom: 10px; /* Space below the heading */
    color: #fff; /* White heading */
}

.whatsappgroup p {
    font-size: 1.2rem; /* Normal paragraph size */
    margin-bottom: 20px; /* Space below the paragraph */
    line-height: 1.6; /* Space between lines */
}

.wa-cta-btn {
    display: inline-block; /* Make the button inline but block-like */
    background-color: #f1f90e; /* Bright yellow background */
    color: #333; /* Dark text color */
    padding: 12px 25px; /* Padding for the button */
    border-radius: 5px; /* Rounded corners for the button */
    font-size: 1.1rem; /* Slightly large font size for button */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s ease; /* Smooth background color change */
}

.wa-cta-btn:hover {
    background-color: #ffd633; /* Slightly lighter yellow on hover */
    color: #000; /* Darker text on hover */
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header h2 {
        font-size: 1.5rem;
    }

    .register-btn {
        font-size: 1rem;
    }

    .center-image {
        width: 100%;
        max-width: 100%;
    }

    .support-section .logo {
        width: 80px; /* Adjust logo size for smaller screens */
    }

    .o365-training-section h3, .whatsappgroup h3 {
        font-size: 1.5rem; /* Adjust heading size on small screens */
    }

    .o365-training-section p, .whatsappgroup p {
        font-size: 1rem; /* Adjust paragraph size on small screens */
    }

    .cta-btn, .wa-cta-btn {
        font-size: 1rem; /* Adjust button size on small screens */
        padding: 10px 20px; /* Adjust padding for the button */
    }

    .linktree-btn {
        font-size: 1rem; /* Adjust button size on smaller screens */
        padding: 8px 15px; /* Adjust padding for smaller screens */
    }

}
