/* Global Variables */
:root {
    --primary-color: #1E8A5E; /* Emerald green */
    --primary-hover: #176B49;
    --secondary-color: #F5EFE0; /* Soft beige */
    --secondary-hover: #E8E0C9;
    --text-color: #303030; /* Charcoal */
    --light-text: #606060;
    --white: #FFFFFF;
    --light-gray: #F9F9F9;
    --border-color: #E0E0E0;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --section-spacing: 80px;
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
}

.btn-text {
    background: none;
    padding: 12px;
    color: var(--text-color);
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active:after,
.main-nav a:hover:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-link {
    display: flex;
    align-items: center;
}

.cart-link svg {
    margin-right: 5px;
}

#cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 0.8rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    margin: 2px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 138, 94, 0.8), rgba(30, 138, 94, 0.8)), url('images/logo.jpg') center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(30, 138, 94, 0.8), rgba(30, 138, 94, 0.8)), url('images/logo.jpg') center/cover;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Local Date Time */
.local-date-time {
    text-align: center;
    padding: 10px 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Stats Counter */
.stats-counter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
    margin: 15px 0;
}

.stat .count {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat p {
    margin-bottom: 0;
    color: var(--light-text);
}

/* CTA */
.cta {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cta h3 {
    margin-bottom: 20px;
}

/* About Courses Section */
.about-courses {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    margin-top: 30px;
    color: var(--primary-color);
}

/* Featured Courses Section */
.featured-courses {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.bestseller-badge,
.new-badge,
.popular-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.bestseller-badge {
    background-color: #FF9A00;
    color: white;
}

.new-badge {
    background-color: #4A90E2;
    color: white;
}

.popular-badge {
    background-color: #D64242;
    color: white;
}

.course-details {
    padding: 20px;
}

.course-details h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #FFC107;
    margin-right: 5px;
}

.count {
    color: var(--light-text);
    font-size: 0.9rem;
}

.description {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.course-price {
    margin-bottom: 15px;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-left: 5px;
}

.course-actions {
    display: flex;
    justify-content: space-between;
}

.course-actions a, 
.course-actions button {
    flex: 1;
    margin: 0 5px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial-content {
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial .rating {
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-weight: 600;
}

.author-title {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.newsletter-content h2 {
    margin-bottom: 10px;
}

.newsletter-content p {
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    min-width: 300px;
    flex: 1;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border-radius: var(--border-radius);
}

.contact-info li, 
.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info svg, 
.footer-links svg {
    margin-right: 10px;
    min-width: 16px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
}

.social-links a {
    margin-right: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom > div {
    margin-bottom: 10px;
}

/* Cookies Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px 0;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    flex: 2;
    min-width: 300px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 20px;
}

.cookie-buttons button {
    margin: 5px;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    margin: 5px;
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 15px 20px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-notification {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
    color: var(--text-color);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 10px 0;
}

.breadcrumb ul {
    display: flex;
}

.breadcrumb li {
    position: relative;
    padding-right: 20px;
    margin-right: 10px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.breadcrumb li:after {
    content: '/';
    position: absolute;
    right: 0;
}

.breadcrumb li:last-child {
    padding-right: 0;
    margin-right: 0;
    color: var(--text-color);
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Product Details Page */
.product-details {
    padding: var(--section-spacing) 0;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    display: block;
}

.product-info h1 {
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.discount {
    background-color: #FEF2F2;
    color: #DC2626;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.product-meta {
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--light-text);
}

.meta-item svg {
    margin-right: 10px;
}

.product-actions {
    display: flex;
    margin-bottom: 25px;
}

.product-actions button {
    margin-right: 15px;
}

.product-short-description {
    color: var(--light-text);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 5px;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    margin-bottom: 60px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 15px;
}

.benefit h4 {
    margin-bottom: 10px;
}

.benefit p {
    color: var(--light-text);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Curriculum List */
.curriculum-list {
    margin-bottom: 30px;
}

.curriculum-module {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.module-header {
    background-color: var(--light-gray);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-length {
    font-size: 0.9rem;
    color: var(--light-text);
}

.module-content {
    padding: 20px;
}

.module-content ul {
    list-style: disc;
    padding-left: 20px;
}

.module-content li {
    margin-bottom: 8px;
    color: var(--light-text);
}

/* Instructors */
.instructors-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.instructor-card {
    display: flex;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
}

.instructor-image {
    margin-right: 15px;
    flex-shrink: 0;
}

.instructor-info h3 {
    margin-bottom: 5px;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.instructor-bio {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Reviews */
.review-summary {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.review-average {
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid var(--border-color);
    margin-right: 30px;
}

.average {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.total-reviews {
    display: block;
    margin-top: 10px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.review-breakdown {
    flex: 1;
}

.breakdown-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.breakdown-row .stars {
    width: 100px;
    text-align: left;
    margin-right: 10px;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    margin-right: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
}

.percentage {
    font-size: 0.9rem;
    color: var(--light-text);
    width: 40px;
    text-align: right;
}

.reviews-list {
    display: grid;
    gap: 20px;
}

.review-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
}

.reviewer-info h4 {
    margin-bottom: 5px;
}

.verification {
    display: inline-block;
    background-color: #F3F4F6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--light-text);
}

.review-date {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.review-content p {
    margin-bottom: 0;
}

/* Related Products */
.related-products h2 {
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card a {
    display: block;
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-card .rating,
.related-card .price {
    padding: 0 15px;
}

.related-card .rating {
    font-size: 0.9rem;
}

.related-card .price {
    padding-bottom: 15px;
}

/* About Page */
.about-section {
    padding: var(--section-spacing) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--primary-color);
    margin-top: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
}

/* Values Section */
.values-section {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    margin-bottom: 0;
    color: var(--light-text);
}

/* Team Section */
.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member p {
    padding: 0 20px;
    color: var(--light-text);
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member .social-links {
    justify-content: center;
    padding-bottom: 20px;
}

.team-member .social-links a {
    margin: 0 5px;
}

/* Achievements Section */
.achievements-section {
    margin-bottom: 60px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    margin-bottom: 60px;
    background-color: var(--light-gray);
    padding: 40px 0;
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    max-width: 250px;
}

.partner-icon {
    margin-bottom: 15px;
}

.partner p {
    margin-bottom: 0;
    color: var(--light-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(30, 138, 94, 0.9), rgba(30, 138, 94, 0.9)), url('images/logo.jpg') center/cover;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
}

/* Contact Page */
.contact-section {
    padding: var(--section-spacing) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--light-text);
    margin-bottom: 0;
}

.contact-text a {
    color: var(--primary-color);
}

.social-connect h3 {
    margin-bottom: 15px;
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #EAEAEA;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #DDDDDD;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.map-placeholder svg {
    margin-bottom: 20px;
}

.map-placeholder p {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--white);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-toggle svg {
    transition: var(--transition);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Form Success Message */
.form-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.form-message.show {
    opacity: 1;
    visibility: visible;
}

.message-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.message-content svg {
    margin-bottom: 20px;
}

.message-content h3 {
    margin-bottom: 15px;
}

.message-content p {
    margin-bottom: 30px;
}

/* Cart Page */
.cart-section {
    padding: var(--section-spacing) 0;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 15px;
}

.empty-cart p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.cart-table-container {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background-color: var(--light-gray);
    font-weight: 500;
}

.cart-product {
    width: 50%;
}

.product-info {
    display: flex;
    align-items: center;
}

.product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.product-title {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.product-price {
    color: var(--light-text);
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
    padding: 5px;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
}

.remove-item:hover {
    color: #DC2626;
}

.cart-summary {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    position: sticky;
    top: 90px;
}

.cart-summary h2 {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--light-text);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.payment-icons svg {
    margin: 0 5px;
}

/* Recommended Courses */
.recommended-courses {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.recommended-courses h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Cart Policies */
.cart-policies {
    padding: 60px 0;
}

.policies-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.policy {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.policy:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.policy-icon {
    margin-bottom: 15px;
}

.policy h3 {
    margin-bottom: 15px;
}

.policy p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* Checkout Page */
.checkout-progress {
    background-color: var(--light-gray);
    padding: 20px 0;
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: center;
}

.progress-steps li {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 30px;
    color: var(--light-text);
}

.progress-steps li:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 1px;
    background-color: var(--border-color);
    transform: translateY(-50%);
}

.progress-steps li:last-child:after {
    display: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    margin-right: 10px;
    font-weight: 600;
}

.step-current {
    color: var(--primary-color);
}

.step-current .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.step-done {
    color: var(--text-color);
}

.step-done .step-number {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: var(--white);
}

.checkout-section {
    padding: var(--section-spacing) 0;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.checkout-form-container {
    padding-right: 20px;
}

.checkout-form-container h1 {
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.checkout-summary {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.checkout-summary h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-title {
    margin-bottom: 5px;
    font-size: 1rem;
}

.item-meta {
    color: var(--light-text);
    font-size: 0.9rem;
}

.summary-totals {
    margin: 20px 0 30px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--light-text);
}

.summary-line.total {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.order-security {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(30, 138, 94, 0.1);
    border-radius: var(--border-radius);
}

.security-icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.security-text p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.guarantee-icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.guarantee-text h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.guarantee-text p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Trust Elements */
.trust-elements {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.trust-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-element {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.trust-icon {
    margin-right: 15px;
}

.trust-text h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.trust-text p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Success Page */
.success-section {
    padding: var(--section-spacing) 0;
}

.success-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.success-icon {
    margin-bottom: 30px;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.step-icon {
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

.success-actions {
    margin-top: 30px;
}

.success-actions a {
    margin: 0 10px;
}

.recommendations {
    max-width: 800px;
    margin: 0 auto;
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 30px;
}

.recommended-courses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.recommended-courses .course-card {
    display: flex;
    align-items: center;
    padding: 15px;
}

.recommended-courses .course-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
}

.recommended-courses .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommended-courses .course-details {
    flex: 1;
    padding: 0;
}

.recommended-courses h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.recommended-courses .rating,
.recommended-courses .course-price {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.recommended-courses .btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 60px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-wrapper,
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: relative;
        top: 0;
        max-height: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 40px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .stats-counter {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        margin: 10px 0;
    }
    
    .cart-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .course-actions a,
    .course-actions button {
        margin: 5px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .course-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .course-meta span {
        margin-bottom: 5px;
    }
    
    .product-price {
        flex-wrap: wrap;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions button {
        margin: 5px 0;
        width: 100%;
    }
    
    .product-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        margin-bottom: 5px;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-rating {
        margin-top: 10px;
    }
    
    .progress-steps li {
        padding: 0 15px;
    }
    
    .step-text {
        display: none;
    }
    
    .recommended-courses {
        grid-template-columns: 1fr;
    }
}
