:root {
    --primary-color: #d62828;
    --light-shade: #fbe9e9;
    --dark-shade: #961c1c;
    --text-color: #333;
    --background-color: #fff;
    --spacing-unit: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-shade);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: calc(var(--spacing-unit) * 10) 0;
}

.btn-primary {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-shade);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--light-shade);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 50px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--dark-shade);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero {
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-unit) * 15) 0;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-unit) * 5);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: calc(var(--spacing-unit) * 2);
    padding-bottom: 0;
}

.feature-card p {
    padding: calc(var(--spacing-unit) * 2);
}

/* Ecosystem Section */
.ecosystem {
    background-color: var(--light-shade);
}

.ecosystem-content {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 5);
}

.ecosystem-text {
    flex: 1;
}

.ecosystem-text p {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.ecosystem-text ul {
    margin-left: calc(var(--spacing-unit) * 3);
}

.ecosystem-text li {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.ecosystem-image {
    flex: 1;
}

.ecosystem-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Community Section */
.community-stats {
    display: flex;
    justify-content: space-around;
    margin: calc(var(--spacing-unit) * 5) 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    font-size: 1.1rem;
}

.community-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Success Stories Section */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.story-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card h3 {
    padding: calc(var(--spacing-unit) * 2);
    padding-bottom: 0;
}

.story-card p {
    padding: 0 calc(var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 2);
}

.story-quote {
    display: block;
    padding: calc(var(--spacing-unit) * 2);
    font-style: italic;
    color: var(--dark-shade);
    border-top: 1px solid var(--light-shade);
}

/* Resource Center Section */
.resource-center {
    background-color: var(--light-shade);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.resource-item {
    background: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-item h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

/* Events Section */
.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: calc(var(--spacing-unit) * 2);
    text-align: center;
    min-width: 100px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 1rem;
}

.event-details {
    padding: calc(var(--spacing-unit) * 2);
    flex: 1;
}

.event-details h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.event-details p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: calc(var(--spacing-unit) * 8) 0;
}

.cta h2 {
    color: white;
}

.cta p {
    margin-bottom: calc(var(--spacing-unit) * 3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--light-shade);
}

/* Contact Section */
.contact {
    background-color: var(--light-shade);
}

.contact-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.info-item h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.contact-form-container {
    flex: 2;
}

.contact-form {
    background: white;
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-group label {
    display: block;
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 1.5);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Business Development Section */
.development-points {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.development-item {
    background: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.development-item:hover {
    transform: translateY(-5px);
}

.development-item h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 5);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.footer-logo {
    flex: 2;
}

.footer-logo img {
    height: 50px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-links,
.footer-contact {
    flex: 1;
}

.footer h3 {
    color: white;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: #ddd;
}

.footer-bottom {
    padding-top: calc(var(--spacing-unit) * 3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Glassmorphic Elements */
.feature-card,
.story-card,
.resource-item,
.event-item,
.contact-form,
.development-item {
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .ecosystem-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: calc(var(--spacing-unit) * 10) 0;
    }

    .community-stats {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 3);
    }

    .stat-item {
        margin-bottom: calc(var(--spacing-unit) * 3);
    }

    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .event-item {
        flex-direction: column;
    }

    .event-date {
        width: 100%;
        padding: calc(var(--spacing-unit) * 1);
    }
}

.policy {
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 5%;
    margin-bottom: 5%;
}

/* About Page Styles */
.about-hero {
    background-color: var(--dark-shade);
}

.about-hero h1,
.about-hero p {
    color: white;
}

.founder-story {
    padding-top: calc(var(--spacing-unit) * 12);
}

.founder-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
    align-items: center;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-text {
    flex: 1;
}

.founder-text p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.mission {
    background-color: var(--light-shade);
}

.mission-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
}

.mission-text {
    flex: 1;
}

.mission-text p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
}

.mission-stat {
    background: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
}

.mission-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mission-stat .stat-text {
    font-size: 1rem;
}

.team-description {
    max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 5);
}

.team-description p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.team-regions h3 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.region-item {
    background: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
}

.region-item:hover {
    transform: translateY(-5px);
}

.region-item h4 {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--primary-color);
}

.impact {
    background-color: var(--light-shade);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.impact-card {
    background: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--primary-color);
}

.impact-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--dark-shade);
}

.philosophy-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
    align-items: center;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-principles {
    flex: 1;
}

.principle-item {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.principle-item h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--primary-color);
}

.research {
    background-color: var(--light-shade);
}

.research-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.research-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.research-item:hover {
    transform: translateY(-5px);
}

.research-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.research-item h3 {
    padding: calc(var(--spacing-unit) * 2);
    padding-bottom: 0;
}

.research-item p {
    padding: calc(var(--spacing-unit) * 2);
}

/* Thank You Page Styles */
.thankyou-section {
    padding: calc(var(--spacing-unit) * 12) 0;
    text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    width: 40px;
    height: 20px;
    border-bottom: 4px solid white;
    border-right: 4px solid white;
    transform: rotate(45deg);
    margin-top: -10px;
}

.thankyou-section h1 {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.thankyou-section p {
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.thankyou-details {
    background: var(--light-shade);
    padding: calc(var(--spacing-unit) * 4);
    border-radius: 8px;
    margin-bottom: calc(var(--spacing-unit) * 4);
    text-align: left;
}

.thankyou-details h2 {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.thankyou-details ul {
    margin-left: calc(var(--spacing-unit) * 3);
}

.thankyou-details li {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.thankyou-actions {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
}

.resources-preview {
    background-color: var(--light-shade);
    padding: calc(var(--spacing-unit) * 8) 0;
}

.resources-preview h2 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.resources-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.resource-preview-item {
    background: white;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
}

.resource-preview-item:hover {
    transform: translateY(-5px);
}

.resource-preview-item h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--primary-color);
}

/* Responsive Styles for About and Thank You Pages */
@media screen and (max-width: 992px) {
    .founder-content,
    .mission-content,
    .philosophy-content {
        flex-direction: column;
    }

    .thankyou-actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .thankyou-section {
        padding: calc(var(--spacing-unit) * 8) 0;
    }

    .regions-list {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .research-projects {
        grid-template-columns: 1fr;
    }

    .resources-preview-grid {
        grid-template-columns: 1fr;
    }
}