/* 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; /* Increased padding for a premium look */
    border: 1px solid #ddd; /* Light border around the container */
    border-radius: 0px; /* Rounded corners for the container */
    background-color: #ffffff; /* White background for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow to create depth */
}

/* Heading for Useful Information */
h1 {
    text-align: center;
    font-size: 30px; /* Larger font for more impact */
    color: #2d7a3d; /* Rich green color */
    margin-bottom: 10px; /* Reduced margin to decrease space */
    font-weight: 700;
    letter-spacing: 2px; /* More spacing for elegance */
    position: relative; /* For 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: -5px; /* Reduced distance from the title */
    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;
}

/* Make the icons bigger */
.collapsible-btn i {
    font-size: 24px; /* Increased icon size */
    margin-right: 10px; /* Space between icon and text */
}

/* 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 List Items */
ul {
    list-style-type: disc; /* Use bullet points (disc) */
    padding-left: 30px; /* Space from the left */
    margin-top: 20px;
}

ul li {
    font-size: 18px;
    color: #333; /* Darker text for readability */
    margin: 15px 0;
    line-height: 1.8;
    position: relative;
}

/* Remove the default bullet point and add custom styling */
ul li::before {
    content: "•"; /* Use a bullet point */
    color: #2d7a3d; /* Green color for the bullet point */
    position: absolute;
    left: -20px; /* Adjusted the position of the bullet */
    font-size: 20px; /* Size of the bullet point */
    top: 3px;
}

/* Styling for Paragraphs */
p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Add horizontal lines between sections */
.collapsible {
    margin-bottom: 30px;
}

/* Horizontal line between content 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: 36px; /* Adjust font size for tablets */
    }
    .collapsible-btn {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
    }
    .collapsible-btn {
        font-size: 16px;
        padding: 14px;
    }
    .content {
        font-size: 16px;
    }
}/* 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; /* Increased padding for a premium look */
    border: 1px solid #ddd; /* Light border around the container */
    border-radius: 0px; /* Rounded corners for the container */
    background-color: #ffffff; /* White background for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow to create depth */
}

/* Heading for Useful Information */
h1 {
    text-align: center;
    font-size: 30px; /* Larger font for more impact */
    color: #2d7a3d; /* Rich green color */
    margin-bottom: 10px; /* Reduced margin to decrease space */
    font-weight: 700;
    letter-spacing: 2px; /* More spacing for elegance */
    position: relative; /* For 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: -5px; /* Reduced distance from the title */
    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;
}

/* Make the icons bigger */
.collapsible-btn i {
    font-size: 24px; /* Increased icon size */
    margin-right: 10px; /* Space between icon and text */
}

/* 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 List Items */
ul {
    list-style-type: disc; /* Use bullet points (disc) */
    padding-left: 30px; /* Space from the left */
    margin-top: 20px;
}

ul li {
    font-size: 18px;
    color: #333; /* Darker text for readability */
    margin: 15px 0;
    line-height: 1.8;
    position: relative;
}

/* Remove the default bullet point and add custom styling */
ul li::before {
    content: "•"; /* Use a bullet point */
    color: #2d7a3d; /* Green color for the bullet point */
    position: absolute;
    left: -20px; /* Adjusted the position of the bullet */
    font-size: 20px; /* Size of the bullet point */
    top: 3px;
}

/* Styling for Paragraphs */
p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Add horizontal lines between sections */
.collapsible {
    margin-bottom: 30px;
}

/* Horizontal line between content 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: 36px; /* Adjust font size for tablets */
    }
    .collapsible-btn {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
    }
    .collapsible-btn {
        font-size: 16px;
        padding: 14px;
    }
    .content {
        font-size: 16px;
    }
}/* 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; /* Increased padding for a premium look */
    border: 1px solid #ddd; /* Light border around the container */
    border-radius: 0px; /* Rounded corners for the container */
    background-color: #ffffff; /* White background for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow to create depth */
}

/* Heading for Useful Information */
h1 {
    text-align: center;
    font-size: 30px; /* Larger font for more impact */
    color: #2d7a3d; /* Rich green color */
    margin-bottom: 10px; /* Reduced margin to decrease space */
    font-weight: 700;
    letter-spacing: 2px; /* More spacing for elegance */
    position: relative; /* For 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: -5px; /* Reduced distance from the title */
    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;
}

/* Make the icons bigger */
.collapsible-btn i {
    font-size: 24px; /* Increased icon size */
    margin-right: 10px; /* Space between icon and text */
}

/* 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 List Items */
ul {
    list-style-type: disc; /* Use bullet points (disc) */
    padding-left: 30px; /* Space from the left */
    margin-top: 20px;
}

ul li {
    font-size: 18px;
    color: #333; /* Darker text for readability */
    margin: 15px 0;
    line-height: 1.8;
    position: relative;
}

/* Remove the default bullet point and add custom styling */
ul li::before {
    content: "•"; /* Use a bullet point */
    color: #2d7a3d; /* Green color for the bullet point */
    position: absolute;
    left: -20px; /* Adjusted the position of the bullet */
    font-size: 20px; /* Size of the bullet point */
    top: 3px;
}

/* Styling for Paragraphs */
p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Add horizontal lines between sections */
.collapsible {
    margin-bottom: 30px;
}

/* Horizontal line between content 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: 36px; /* Adjust font size for tablets */
    }
    .collapsible-btn {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
    }
    .collapsible-btn {
        font-size: 16px;
        padding: 14px;
    }
    .content {
        font-size: 16px;
    }
}