@font-face {
    font-family: 'Raleway';
    src: url('https://fonts.cdnjs.com/raleway-v28-latin-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --violet: #8A2BE2;
    --violet-light: #9966CC;
    --violet-dark: #4B0082;
    --green: #32CD32;
    --green-light: #90EE90;
    --green-dark: #006400;
    --yellow: #FFD700;
    --yellow-light: #FFFF00;
    --yellow-dark: #DAA520;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #F5F5F5;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--violet);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--violet-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: var(--violet);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--violet-dark);
    color: var(--white);
}

header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100vw;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2rem;
    color: var(--violet);
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    color: var(--green);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    position: relative;
    padding-bottom: 0.3rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-section {
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--green-light) 50%, var(--yellow-light) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    color: var(--white);
    z-index: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, var(--black) 70%, transparent 100%);
}

.about-section {
    padding: 5rem 5%;
    background-color: var(--gray);
    position: relative;
}

.hexagon-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hexagon {
    width: 45%;
    position: relative;
    padding: 2rem;
    background-color: var(--white);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
}

.hexagon h2 {
    color: var(--violet);
}

.hexagon p {
    margin-bottom: 1rem;
}

.hexagon-image {
    width: 45%;
    height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.hexagon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.programs-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

.programs-section h2 {
    text-align: center;
    color: var(--violet);
    margin-bottom: 3rem;
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.program-card {
    width: calc(33.333% - 2rem);
    background-color: var(--gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--violet);
}

.program-card p {
    padding: 0 1.5rem 1.5rem;
}

.benefits-section {
    padding: 5rem 5%;
    background: linear-gradient(to right, var(--violet-light) 0%, var(--green-light) 50%, var(--yellow-light) 100%);
    position: relative;
    color: var(--white);
}

.benefits-content {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.benefit-icon.violet {
    background-color: var(--violet);
}

.benefit-icon.green {
    background-color: var(--green);
}

.benefit-icon.yellow {
    background-color: var(--yellow);
}

.benefit-item h3 {
    color: var(--white);
}

.success-stories {
    padding: 5rem 5%;
    background-color: var(--white);
}

.success-stories h2 {
    text-align: center;
    color: var(--violet);
    margin-bottom: 3rem;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.story-image {
    width: 40%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    width: 60%;
}

.story-content h3 {
    color: var(--violet);
    margin-bottom: 1rem;
}

.story:nth-child(2n) {
    flex-direction: row-reverse;
}

.contact-section {
    padding: 5rem 5%;
    background-color: var(--gray);
}

.contact-section h2 {
    text-align: center;
    color: var(--violet);
    margin-bottom: 3rem;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    width: 48%;
}

.contact-info h3, .contact-form h3 {
    color: var(--violet);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--violet);
    outline: none;
}

.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo, .footer-nav, .footer-policies, .footer-contact {
    margin-bottom: 2rem;
    width: 22%;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-nav h3, .footer-policies h3, .footer-contact h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.footer-nav ul li, .footer-policies ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a, .footer-policies a {
    color: var(--white);
}

.footer-nav a:hover, .footer-policies a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .program-card {
        width: calc(50% - 2rem);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo, .footer-nav, .footer-policies, .footer-contact {
        width: 48%;
    }
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hexagon-container {
        flex-direction: column;
    }
    
    .hexagon, .hexagon-image {
        width: 80%;
        margin-bottom: 2rem;
    }
    
    .story {
        flex-direction: column;
    }
    
    .story:nth-child(2n) {
        flex-direction: column;
    }
    
    .story-image, .story-content {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0.5rem;
    }
    
    .hero-section {
        flex-direction: column;
        height: auto;
        padding: 3rem 5%;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        transform: none;
        top: auto;
    }
    
    .hero-image img {
        mask-image: none;
    }
    
    .program-card {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo, .footer-nav, .footer-policies, .footer-contact {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .header-inner {
        padding: 0.8rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .main-nav li {
        margin: 0.3rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hexagon {
        padding: 1.5rem;
        width: 95%;
    }
    
    .hexagon-image {
        width: 95%;
        height: 250px;
    }
    
    .story-image {
        height: 200px;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}