* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b2252;
    --secondary-color: #5e0035;
    --accent-color: #a6297e;
    --light-color: #f5e6f0;
    --dark-color: #2a0a1a;
    --text-color: #333;
    --background-color: #fff5fb;
}

@font-face {
    font-family: 'EnergyFont';
    src: url('fonts/energyfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'EnergyFont', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.main-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.main-header h1 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: white;
    font-weight: 600;
    position: relative;
}

.main-nav a:hover {
    color: var(--light-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.hero-section {
    display: flex;
    height: 85vh;
    background: linear-gradient(45deg, rgba(139, 34, 82, 0.1), rgba(166, 41, 126, 0.1));
    overflow: hidden;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    clip-path: circle(50% at 70% 50%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 5px 15px rgba(139, 34, 82, 0.3);
    align-self: flex-start;
}

.action-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.about-section {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    background-color: #fff;
}

.about-hexagon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hexagon::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: rgba(139, 34, 82, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.about-content {
    width: 80%;
    z-index: 1;
    padding: 2rem;
}

.about-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 34, 82, 0.2);
}

.about-philosophy {
    grid-column: span 2;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    margin-top: 2rem;
}

.about-philosophy h3,
.about-philosophy p {
    color: white;
}

.programs-section {
    padding: 5rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

.programs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.program-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(139, 34, 82, 0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3,
.program-card p,
.program-card ul {
    padding: 0 1.5rem;
    text-align: left;
}

.program-card h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.program-benefits {
    margin: 1.5rem 0;
    padding-left: 2.5rem !important;
}

.program-benefits li {
    position: relative;
    margin-bottom: 0.5rem;
}

.program-benefits li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.benefits-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.benefits-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-heading h2 {
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(139, 34, 82, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(139, 34, 82, 0.1);
    text-align: left;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-card h3 {
    text-align: center;
    color: var(--secondary-color);
}

.testimonial-card p {
    font-style: italic;
}

.contact-section {
    padding: 5rem 5%;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    padding-right: 2rem;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 5px 15px rgba(139, 34, 82, 0.3);
    font-family: inherit;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 2rem;
    align-self: start;
}

.contact-info h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.working-hours {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--primary-color);
}

.working-hours h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.main-footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 4rem 5% 2rem;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: white;
    margin: 0;
}

.footer-nav h4,
.footer-policies h4,
.footer-contact h4 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-nav h4::after,
.footer-policies h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-nav ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a,
.footer-policies a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav a:hover,
.footer-policies a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        flex-direction: column;
        height: auto;
    }
    
    .hero-content {
        padding: 3rem 5%;
    }
    
    .hero-image {
        clip-path: none;
        height: 300px;
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .about-philosophy {
        grid-column: span 1;
    }
    
    .program-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 1rem 3%;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .main-header h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .programs-section,
    .benefits-section,
    .testimonials-section,
    .contact-section,
    .about-section {
        padding: 3rem 3%;
    }
    
    .program-card,
    .benefit-item,
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav,
    .footer-policies,
    .footer-contact {
        margin-top: 2rem;
    }
}

@media (max-width: 375px) {
    .main-header h1 {
        font-size: 1.2rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }
    
    .action-button {
        width: 100%;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .about-content {
        width: 100%;
        padding: 1rem;
    }
    
    .programs-section h2,
    .benefits-heading h2,
    .testimonials-section h2,
    .contact-form-container h2 {
        font-size: 2rem;
    }
}

.policy-page {
    padding: 5rem 5%;
}

.policy-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.policy-page h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.policy-section p {
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.home-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    margin-top: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background-color 0.3s;
}

.home-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.thank-you-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 34, 82, 0.1), rgba(166, 41, 126, 0.1));
}

.thank-you-content {
    max-width: 800px;
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(139, 34, 82, 0.2);
}

.thank-you-page h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thank-you-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}