@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0088a9;
    --secondary: #00b3b3;
    --accent: #00e6e6;
    --dark-blue: #004d66;
    --light-blue: #80dfff;
    --light: #f0f9ff;
    --dark: #002233;
    --text: #333333;
    --bg-light: #f5fcff;
    --bg-dark: #003344;
    --radius: 15px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.8rem;
}

.accent {
    color: var(--primary);
    font-style: italic;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.cta-button, .submit-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover, .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 169, 0.2);
    color: white;
}

.cta-button:before, .submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.cta-button:hover:before, .submit-button:hover:before {
    opacity: 1;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 1rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
}

.hero {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 7rem 5% 5rem;
    background: linear-gradient(135deg, var(--light), var(--bg-light));
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 20px 20px 60px rgba(0, 77, 102, 0.2);
}

section {
    padding: 5rem 5%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-blue);
    max-width: 700px;
    margin: 0 auto;
}

.diagonal-section {
    position: relative;
    background: linear-gradient(135deg, #e6f9ff, #f0f9ff);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding-top: 8rem;
    padding-bottom: 8rem;
    margin-top: -5rem;
}

.program-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.program-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 77, 102, 0.1);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 102, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    color: var(--primary);
    padding: 1.5rem 1.5rem 0.5rem;
}

.program-card p {
    padding: 0 1.5rem 1.5rem;
}

.hexagon-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hexagon-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 30%, rgba(0, 179, 179, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 90% 70%, rgba(0, 136, 169, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 77, 102, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 102, 0.15);
}

.benefit-item:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-color: var(--primary);
    top: -25%;
    left: -25%;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.05;
    transition: var(--transition);
}

.benefit-item:hover:before {
    transform: rotate(30deg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.success-stories {
    background-color: var(--bg-light);
    position: relative;
}

.success-stories:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 136, 169, 0.05) 0%, transparent 50%),
                linear-gradient(45deg, transparent 50%, rgba(0, 179, 179, 0.05) 100%);
    z-index: -1;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    display: flex;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 77, 102, 0.1);
    margin-bottom: 3rem;
}

.story-card.reversed {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 2;
    padding: 2rem;
}

.story-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.story-content p {
    font-style: italic;
}

.activities {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.activities:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(0, 179, 179, 0.05) 0%, transparent 80%);
    z-index: -1;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 2rem;
}

.activity-item {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 77, 102, 0.1);
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 77, 102, 0.15);
}

.activity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-item h3 {
    color: var(--primary);
    padding: 1.5rem 1.5rem 0.5rem;
}

.activity-item p {
    padding: 0 1.5rem 1rem;
}

.activity-time {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.contact {
    background-color: var(--bg-light);
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 136, 169, 0.05) 0%, transparent 50%),
                linear-gradient(45deg, transparent 50%, rgba(0, 179, 179, 0.05) 100%);
    z-index: -1;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
}

.contact-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 77, 102, 0.1);
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 77, 102, 0.1);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

.main-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 4rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 230, 230, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 10% 90%, rgba(0, 136, 169, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-nav h3,
.footer-policies h3,
.footer-contact h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-nav ul,
.footer-policies ul {
    list-style: none;
}

.footer-nav li,
.footer-policies li {
    margin-bottom: 0.7rem;
}

.footer-nav a,
.footer-policies a {
    color: white;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-policies a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 0.7rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .program-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        padding-right: 0;
        max-width: none;
    }
    
    .hero-image {
        margin-bottom: 3rem;
        max-width: none;
    }
    
    .story-card, .story-card.reversed {
        flex-direction: column;
    }
    
    .story-image {
        min-width: auto;
    }
    
    .story-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 5%;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .program-card, .benefit-item {
        min-width: 100%;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-logo img {
        width: 60px;
    }
}

@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-button, .submit-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}