/* Hero Section */
.hero {
    padding: 50px 20px;
    text-align: center;
    width: 80%;
    margin: 0 auto; /* Center the hero section */
}

.hero-content h1 {
    font-size: 2em; /* Adjusted for smaller screens */
    font-weight: bold;
    color: #2c3e50; /* Dark text for contrast */
    line-height: 1.2em;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: #e74c3c; /* Highlight color */
    font-weight: bolder;
}

.hero-content .subheading {
    font-size: 1em; /* Adjusted for smaller screens */
    color: #E42427;
    line-height: 1.6em;
    margin: 0 auto;
    font-weight: bold;
}

.italic {
    font-style: italic;
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0; /* Remove left and right padding */
    width: 100%; /* Ensure section takes full width */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.info-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.left-section {
    background-color: #E2EFED;
    padding: 20px;
}

.left-section h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50; /* Dark heading color */
    margin-bottom: 10px;
}

.left-section p {
    font-size: 1em;
    color: #333;
    line-height: 1.6em;
}

.right-section {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.info-card {
    background-color: #f9f9f9; /* Light gray background for cards */
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50; /* Dark heading color */
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1em;
    color: #333;
    line-height: 1.6em;
}

.highlight-card {
    background-color: #7BCBE5; /* Light blue highlight background */
}

/* Discover Section */
.discover-section {
    padding: 10px 10px;
    padding-bottom: 60px;
    text-align: center;
}

.discover-content h2 {
    font-size: 2em; /* Adjusted for smaller screens */
    font-weight: bold;
    color: #2c3e50; /* Dark text color */
    margin-bottom: 20px;
}

.cta-button {
    margin-top: 20px;
}

.cta-button button {
    background-color: #e74c3c; /* Red button color */
    color: white;
    font-size: 13px;
    padding: 5px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button button:hover {
    background-color: #c0392b; /* Slightly darker red on hover */
}

.cta-button a {
    text-decoration: none;
}

/* Media Queries for responsiveness */
@media (min-width: 768px) {
    .hero {
        width: 60%;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content .subheading {
        font-size: 1.2em;
    }

    .info-container {
        grid-template-columns: 1fr 2fr;
    }

    .discover-content h2 {
        font-size: 3em;
    }
}

@media (max-width: 767px) {
    .info-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content .subheading {
        font-size: 1em;
    }

    .discover-content h2 {
        font-size: 2em;
    }
}

/* Footer Section */
.footer {
    background-color: white; /* Dark background for contrast */
    padding: 20px;
    text-align: left;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
}

.footer-heading {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    font-weight: bold;
    color: #28285B;
}

.footer a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer p {
    margin: 5px 0;
    font-size: 1em;
    color: #28285B;
}


/* discover & us page */
.discover_container {
    padding-top: 20px;
}

.discover_container h2 {
    font-weight: bolder;
}

.discover_container p {
    font-size: 1.5em;
}

.discover_container div.intro {
    width: 70%;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.discover_container div.inmission {
    width: 75%;
    font-size: 0.8em;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
}

.mission {
    width: 100%;
    background: white;
}

.split-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.split-section .text {
    width: 100%;
    background-color: #7BCBE5;
    margin: 0;
    order:1
}

.split-section .intext {
    padding: 25px;
}

.split-section .text p {
    margin: 0;
    line-height: 1.6;
    width: 100%;
}

.split-section .button {
    display: flex;
    justify-content: center;
    align-items: center;
    order:2;
    padding: 25px 0;
}

.split-section .button a {
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.25em;
    cursor: pointer;
}

/* Media Queries for responsiveness */
@media (min-width: 768px) {
    .discover_container div.intro,
    .discover_container div.inmission {
        margin-left: 75px;
        margin-right: 75px;
    }

    .split-section {
        flex-direction: row;
    }

    .split-section .text {
        flex: 1;
        margin-bottom: 0;
        padding: 25px 50px;
    }

    .split-section .button {
        flex: 1;
    }
}
