/* General Body and Container Styling */
body {
    font-family: 'Roboto', sans-serif; /* Modern font */
    background-color: #fafafa; /* Soft background */
    margin: 0;
    padding-top: 0px;
	padding-bottom:10px;
}
/* Hero Section Custom Styling (Optional) */
.slider {
    height: 13vh;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .slide-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}


/* Container for content */
.container {
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
    background-color: #ffffff; /* White background for the container */
    border-radius: 0px; /* Rounded corners for a premium look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Heading for FAQ */
h1 {
    text-align: center;
    font-size: 32px; /* Larger font size for impact */
    color: #2d7a3d; /* Rich green color */
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px; /* Increased spacing for elegance */
    position: relative; /* Positioning an underline */
}

/* Add an underline beneath the title to make it more premium */
h1::after {
    content: "";
    display: block;
    width: 80%;
    height: 3px;
    background-color: #f2c967; /* Gold underline */
    position: absolute;
    bottom: -10px; /* Position the underline slightly below the text */
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
}

/* Collapsible Button Styling */
.collapsible-btn {
    background: none;
    color: #003366; /* Dark blue color for the text */
    font-weight: bold; /* Make the text bold */
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin: 5px 0;
    outline: none;
    transition: all 0.3s ease; /* Smooth transition for hover and active states */
}

/* Active button styling */
.collapsible-btn.active {
    background-color: #f2c967; /* Gold background when active */
    color: #fff;
}

/* Collapsible Content Styling */
.content {
    padding: 20px;
    background-color: #ffffff; /* White background for clean look */
    display: none;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Styling for Paragraphs */
p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Add bullet points to the list */
ul {
    list-style-type: disc;
    padding-left: 20px; /* Add indentation for the bullets */
    margin-top: 20px;
}

/* Styling for List Items */
ul li {
    font-size: 18px;
    color: #333; /* Darker text for readability */
    margin: 10px 0;
    line-height: 1.8;
}

/* Add horizontal line between sections */
.collapsible + .collapsible {
    border-top: 1px solid #ddd; /* Thin light gray line */
    padding-top: 30px; /* Add space above the next section */
}

/* Horizontal line after each collapsible section */
.content {
    margin-top: 20px;
    border-top: 1px solid #ddd; /* Light gray line after each content */
    padding-top: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
    h1 {
        font-size: 28px; /* Adjust font size for tablets */
    }
    .collapsible-btn {
        font-size: 16px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    h1 {
        font-size: 24px; /* Adjust font size for smaller screens */
    }
    .collapsible-btn {
        font-size: 14px;
        padding: 12px;
    }
    .content {
        font-size: 16px;
    }
}