:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c6e49;
    --accent-color: #a53860;
    --champagne-color: #f2e9e4;
    --background-color: #ffffff;
    --text-color: #333333;
    --heading-font: 'Bebas Neue', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-heading h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accent-text {
    color: var(--accent-color);
}

.accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    margin-top: 1rem;
}

.wave-divider {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-fill {
    fill: var(--champagne-color);
}

.wave-divider.inverted {
    transform: rotate(180deg);
    margin-bottom: -1px;
    margin-top: 0;
}

.zigzag-divider {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: -1px;
}

.zigzag-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zigzag-fill {
    fill: var(--primary-color);
}

.tilted-strip {
    height: 80px;
    background-color: var(--secondary-color);
    transform: skewY(-3deg);
    margin: 4rem 0;
    opacity: 0.1;
}

.tilted-strip.reversed {
    transform: skewY(3deg);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent-color);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover:before {
    width: 300px;
    height: 300px;
}

header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 1rem;
}

.logo-container h1 {
    margin-bottom: 0;
    font-size: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    position: relative;
}

.main-nav a.active {
    border: 2px solid white;
    border-radius: 4px;
}

.main-nav a:hover:not(.active) {
    color: var(--accent-color);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    padding: 10rem 5% 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
}

.accent-strip {
    height: 8px;
    background-color: var(--accent-color);
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.about {
    padding: 6rem 5%;
    background-color: var(--champagne-color);
}

.about-content {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding-right: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practices {
    padding: 6rem 5%;
    background-color: white;
    position: relative;
}

.practices-content {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.practice-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--champagne-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.practice-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.practice-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.8rem;
}

.practice-card p {
    padding: 0 1.5rem 1.5rem;
}

.timeline {
    padding: 6rem 5%;
    background-color: var(--champagne-color);
    position: relative;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(80px + 20px);
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.gallery {
    padding: 6rem 5%;
    background-color: white;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.achievements {
    padding: 6rem 5%;
    background-color: var(--champagne-color);
    position: relative;
}

.checklist-container {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.checklist-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.checklist-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checklist-content {
    flex: 1;
}

.checklist-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 6rem 5%;
    background-color: white;
    position: relative;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--champagne-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact {
    padding: 6rem 5% 10rem;
    background-color: var(--champagne-color);
    position: relative;
}

.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

footer {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-links h3, .footer-policies h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-links ul, .footer-policies ul {
    list-style: none;
}

.footer-links li, .footer-policies li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-policies a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover, .footer-policies a:hover {
    color: white;
}

.footer-bottom {
    padding: 1.5rem 5%;
    text-align: center;
    border-top: 1px solid #444;
}

@media (max-width: 1100px) {
    .hero-content, .about-content, .contact-container {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }
    
    .timeline-container::before {
        left: 40px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 8rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .practice-card, .testimonial-card {
        min-width: 100%;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-number {
        margin-left: 10px;
    }
    
    .timeline-container::before {
        left: 40px;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        gap: 0.8rem;
    }
    
    .main-nav a {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .wave-divider {
        height: 50px;
    }
}

@media (max-width: 375px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}