:root {
    --primary-color: #FF6B00;
    --primary-dark: #E05600;
    --secondary-color: #1E1E1E;
    --light-color: #F9F9F9;
    --gray-color: #EFEFEF;
    --text-color: #333333;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.accent {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 1.5rem;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider path {
    fill: var(--light-color);
}

.wave-divider.inverted {
    transform: rotate(0);
}

.wave-divider.inverted path {
    fill: var(--gray-color);
}

.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before, .btn-tertiary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-tertiary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transform: translateY(-3px);
}

.btn-tertiary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-tertiary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

header {
    background-color: var(--light-color);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hero {
    background-color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 5rem 3rem 5rem 1.5rem;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    height: 600px;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.programs {
    background-color: var(--light-color);
    position: relative;
}

.program-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3, .program-card p {
    padding: 0 1.5rem;
}

.program-card h3 {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.program-card .btn-tertiary {
    margin: 1.5rem;
    display: inline-block;
}

.benefits {
    background-color: var(--gray-color);
    position: relative;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
}

.benefits-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.benefits-list {
    flex: 1.5;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.approach {
    background-color: var(--light-color);
    position: relative;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-item {
    position: relative;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 107, 0, 0.1);
    position: absolute;
    top: 10px;
    right: 15px;
}

.approach-item h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonials {
    background-color: var(--gray-color);
    position: relative;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-content p {
    position: relative;
    font-style: italic;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: 0;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-size: 1rem;
}

.contact {
    background-color: var(--light-color);
    position: relative;
}

.contact h2 {
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    grid-column: span 2;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.contact-form .btn-primary {
    grid-column: span 2;
    margin-top: 1rem;
}

footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-item a {
    transition: var(--transition);
    opacity: 0.8;
}

.footer-item a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.logo-section img {
    width: 50px;
    height: 50px;
}

.logo-section h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.logo-section p {
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 4rem 1.5rem;
    }
    
    .hero-image {
        width: 100%;
        height: 400px;
        clip-path: none;
    }
    
    .benefits-container {
        flex-direction: column-reverse;
    }
    
    .benefits-image {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .approach-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
    
    .contact-form .btn-primary {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons a {
        width: 100%;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 375px) {
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}