
@font-face {
    font-family: 'Ubuntu Rounded';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/ubuntu-font-family/0.83/UbuntuBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu Rounded';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/ubuntu-font-family/0.83/UbuntuRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFB400;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --dark-gray: #444444;
    --black: #222222;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu Rounded', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--black);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-yellow);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.logo p {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #E0E0E0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 3rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-right: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    border-radius: 10px;
    transform: rotate(2deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-3px);
    color: var(--black);
}

section {
    padding: 5rem 2rem;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
}

.programs-section {
    background-color: var(--white);
}

.programs-hexagon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.program-item {
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.program-item:hover {
    transform: translateY(-10px);
}

.program-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-item h3 {
    color: var(--dark-gray);
    padding: 1.5rem 1.5rem 0.5rem;
}

.program-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-gray);
}

.benefits-section {
    background-color: var(--light-gray);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.2) 100%);
    z-index: -1;
}

.benefits-zigzag {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.benefit-item:nth-child(odd) {
    flex-direction: row;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-yellow);
    opacity: 0.4;
    min-width: 120px;
    display: flex;
    align-items: center;
}

.benefit-content {
    flex: 1;
    padding: 1rem 1rem 1rem 2rem;
    position: relative;
}

.benefit-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-yellow);
}

.stories-section {
    background-color: var(--white);
    position: relative;
}

.stories-diagonal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: rotate(0deg);
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--medium-gray);
    font-style: italic;
}

.team-section {
    background-color: var(--light-gray);
    position: relative;
}

.team-arc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-yellow);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--medium-gray);
}

.contact-section {
    background-color: var(--white);
    position: relative;
}

.contact-wave {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.contact-info ul li {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.contact-info ul li span {
    font-weight: bold;
    color: var(--dark-gray);
    margin-right: 0.5rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark-gray);
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-3px);
}

.site-footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo h2 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-nav, .footer-policy, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-nav h3, .footer-policy h3, .footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h3::after, .footer-policy h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.footer-nav ul li, .footer-policy ul li {
    margin-bottom: 0.8rem;
}

.footer-nav a, .footer-policy a {
    color: var(--light-gray);
    transition: color 0.3s;
}

.footer-nav a:hover, .footer-policy a:hover {
    color: var(--primary-yellow);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: var(--light-gray);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 1rem;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .team-arc {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .benefit-item:nth-child(odd),
    .benefit-item:nth-child(even) {
        flex-direction: column;
    }
    
    .benefit-number {
        margin-bottom: 1rem;
    }
    
    .benefit-content::before {
        width: 100%;
        height: 4px;
        top: -4px;
        left: 0;
    }
    
    .contact-wave {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 375px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .program-item img {
        height: 200px;
    }
    
    .benefit-number {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}