/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #503a2f;
    background-color: #e4dad1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #e4dad1 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
	background-color: #e4dad1;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #503a2f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #503a2f;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #cfbcb1;
}

/* CTA Button */
.cta-button1 {
    background: #503a2f;
    color: #e4dad1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.cta-button {
    background: #cfbcb1;
    color: #503a2f;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.cta-button:hover {
    background: #e4dad1;
    text-decoration: none;
}
.cta-button1:hover {
    background: #e4dad1;
	color: #000;
    text-decoration: none;
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #503a2f, #cfbcb1);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 60px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: #e4dad1;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #cfbcb1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* Why CVA Section */
.why-cva {
    padding: 6rem 0;
    background: #e4dad1;
}

.why-cva h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #503a2f;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
}

/* Profile Section */
.profile-section {
    padding: 4rem 0;
    background: #e4dad1;
}

.profile-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.profile-photo-container {
    flex: 1;
    text-align: center;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #503a2f;
}

.profile-title {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #503a2f;
    text-decoration: none;
}

.social-link:hover {
    color: #cfbcb1;
}

.profile-text {
    flex: 2;
    font-size: 1rem;
    line-height: 1.8;
    color: #503a2f;
}

/* Services Section */
#services {
    background: linear-gradient(to bottom, #e4dad1, #cfbcb1);
    padding: 6rem 0;
}

.section_title h2 {
    font-size: 2.5rem;
    color: #503a2f;
}

.section_title h4 {
    font-size: 1.5rem;
    color: #503a2f;
    margin-bottom: 1rem;
}

.section_title p {
    font-size: 1rem;
    color: #503a2f;
}

.service_box {
    background: #cfbcb1;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.service_box h3 {
    font-size: 1.8rem;
    color: #503a2f;
    margin-bottom: 1rem;
}

.service_item ul {
    list-style: none;
}

.service_item ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #503a2f;
}

.service_item ul li i {
    color: #cfbcb1;
    margin-right: 8px;
}

.btn-primary {
    background-color: #503a2f;
    color: #e4dad1;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #cfbcb1;
}

.btn-secondary {
    background-color: #cfbcb1;
    color: #503a2f;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-secondary:hover {
    background-color: #503a2f;
    color: #e4dad1;
}

.motivation p {
    font-size: 1.2rem;
    font-style: italic;
    color: #503a2f;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #e4dad1;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #503a2f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #cfbcb1;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #503a2f;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #503a2f;
}

.testimonial-author {
    text-align: right;
}

/* Motivation Section */
.motivation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #503a2f 0%, #cfbcb1 100%);
    color: white;
    text-align: center;
}

.motivation blockquote {
    font-size: 1.5rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #503a2f;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: #503a2f;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .services h2,
    .why-cva h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.payment-plans .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.plan-card {
    background: #cfbcb1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.additional-packages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.membership-package, .resource-library {
    background: #e4dad1;
    border-left: 5px solid #503a2f;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

.membership-package:hover, .resource-library:hover {
    border-color: #cfbcb1;
}

.membership-package h3, .resource-library h3 {
    font-size: 1.6rem;
    color: #503a2f;
    margin-bottom: 10px;
}

.membership-package p, .resource-library p {
    font-size: 1rem;
    color: #503a2f;
}

.membership-package ul, .resource-library ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.membership-package li, .resource-library li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.membership-package i, .resource-library i {
    color: #503a2f;
    margin-right: 8px;
}

.membership-package a, .resource-library a {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1rem;
    color: #e4dad1;
    border-radius: 5px;
    text-decoration: none;
    background-color: #503a2f;
    transition: background-color 0.3s;
}

.membership-package a:hover, .resource-library a:hover {
    background-color: #cfbcb1;
}
