/* Base Styles */
:root {
    --primary-color: #2e6bb3;
    --primary-dark: #1e508a;
    --primary-light: #4a8cd5;
    --secondary-color: #e9a03b;
    --secondary-dark: #c07b1f;
    --secondary-light: #f8b75b;
    --accent-color: #d35b47;
    --dark-color: #333333;
    --medium-dark-color: #555555;
    --light-color: #f5f5f5;
    --medium-light-color: #e0e0e0;
    --gray-color: #888888;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-radius: 4px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 60px 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    font-size: 0.9rem;
}

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

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

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

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.85rem;
    margin: 0 5px;
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--medium-light-color);
    color: var(--dark-color);
}

.btn-cookie.decline {
    background-color: var(--medium-dark-color);
    color: white;
}

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

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

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

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.cart-link {
    display: flex;
    align-items: center;
}

nav ul li a.cart-link svg {
    margin-right: 5px;
}

#cart-count {
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
    background-image: linear-gradient(rgba(46, 107, 179, 0.9), rgba(46, 107, 179, 0.9)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container {
    margin: 30px 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-container h3 {
    color: white;
    margin-bottom: 15px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#countdown div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#countdown div span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

#countdown div span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advantages Section */
.advantages {
    background-color: white;
    padding: 80px 0;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-card .icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    font-weight: 600;
    color: var(--medium-dark-color);
}

/* About Programs Section */
.about-programs {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.about-programs p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-programs h3 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Products/Programs Section */
.products {
    background-color: white;
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-info p {
    margin-bottom: 20px;
    color: var(--medium-dark-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}

.testimonial .quote {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    text-align: right;
}

.author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author p {
    font-style: normal;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

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

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

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

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 10px;
    color: white;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* Product Details Page */
.product-details {
    padding: 60px 0;
}

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

.product-layout .product-image {
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-layout .product-info {
    text-align: left;
    padding: 0;
}

.product-layout .product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.price-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.price-box .price {
    margin-bottom: 0;
    margin-right: 20px;
}

.availability {
    font-size: 0.9rem;
    color: var(--medium-dark-color);
}

.availability span {
    color: var(--success-color);
    font-weight: 600;
}

.rating {
    margin-bottom: 20px;
}

.rating .stars {
    color: var(--secondary-color);
    margin-right: 10px;
}

.product-short-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-dark-color);
}

.product-options {
    margin-bottom: 30px;
}

.option {
    margin-bottom: 15px;
}

.option label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.option select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-light-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.quantity {
    margin-bottom: 30px;
}

.quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-light-color);
    border-radius: var(--border-radius);
    width: fit-content;
}

.quantity-input button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium-dark-color);
}

.quantity-input input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--medium-light-color);
    border-right: 1px solid var(--medium-light-color);
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.product-details-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--medium-light-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--medium-dark-color);
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

.tab-content h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.tab-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.tab-content p, .tab-content ul {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.tab-content ul li {
    margin-bottom: 10px;
}

.week-breakdown {
    margin-top: 30px;
}

.week {
    margin-bottom: 30px;
}

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

.schedule-table {
    margin-top: 20px;
    overflow-x: auto;
}

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

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

.schedule-table th {
    background-color: var(--primary-color);
    color: white;
}

.schedule-table tr:nth-child(even) {
    background-color: var(--light-color);
}

.reviews-container {
    margin-top: 30px;
}

.review {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

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

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

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

.review-rating .stars {
    color: var(--secondary-color);
    margin-right: 10px;
}

.review-rating .date {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.review p {
    font-style: italic;
    margin-bottom: 0;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

/* About Page */
.about-hero, .contact-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.about-hero h1, .contact-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.our-story {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-values {
    background-color: var(--light-color);
    padding: 80px 0;
}

.mission, .values {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission h2, .values h2 {
    margin-bottom: 25px;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 60px;
}

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

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team {
    padding: 80px 0;
    background-color: white;
}

.team h2, .team-intro {
    text-align: center;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--medium-dark-color);
}

.team-member .social-links {
    margin-bottom: 20px;
}

.team-member .social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-light);
}

.locations, .approach, .accreditations {
    padding: 80px 0;
}

.locations {
    background-color: var(--light-color);
}

.locations h2, .locations-intro, .approach h2, .accreditations h2 {
    text-align: center;
}

.locations-intro, .approach p:first-of-type {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

.location-card, .approach-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.location-card h3, .approach-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.accreditation {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.accreditation-icon {
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.accreditation-content h3 {
    margin-bottom: 10px;
}

.accreditation-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background-color: white;
}

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

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

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.contact-card p {
    margin-bottom: 5px;
}

.contact-form {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-form h2, .contact-form p:first-of-type {
    text-align: center;
}

.contact-form p:first-of-type {
    max-width: 800px;
    margin: 0 auto 50px;
}

form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-control {
    flex: 1;
}

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

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-light-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

.checkbox-control {
    display: flex;
    align-items: flex-start;
}

.checkbox-control input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.form-success {
    text-align: center;
    padding: 50px 0;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.faq {
    padding: 80px 0;
    background-color: white;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--medium-dark-color);
}

/* Cart Page */
.cart-section {
    padding: 60px 0;
    min-height: 500px;
}

.cart-section h1 {
    text-align: center;
    margin-bottom: 50px;
}

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

.empty-cart-icon {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.cart-items {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 20px 15px;
    align-items: center;
    border-bottom: 1px solid var(--medium-light-color);
}

.cart-item:last-child {
    border-bottom: none;
}

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

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

.cart-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-price, .cart-total {
    font-weight: 600;
}

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

.cart-quantity button {
    width: 30px;
    height: 30px;
    background-color: var(--light-color);
    border: 1px solid var(--medium-light-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--medium-light-color);
    border-left: none;
    border-right: none;
}

.cart-remove button {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.cart-totals {
    width: 300px;
}

.subtotal, .discount, .total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.total {
    font-weight: 700;
    font-size: 1.3rem;
    border-top: 1px solid var(--medium-light-color);
    padding-top: 15px;
}

.promo-code h3 {
    margin-bottom: 15px;
}

.promo-input {
    display: flex;
}

.promo-input input {
    width: 200px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.promo-input button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.recommended {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Checkout Page */
.checkout-section {
    padding: 60px 0;
    min-height: 500px;
}

.checkout-section h1 {
    text-align: center;
    margin-bottom: 50px;
}

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

.empty-checkout-icon {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-container {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.checkout-summary {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    height: fit-content;
}

.checkout-summary h2 {
    margin-bottom: 30px;
}

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

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

.checkout-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.checkout-item-info .price {
    font-size: 1.1rem;
}

.checkout-item-info .quantity {
    font-size: 0.9rem;
    color: var(--medium-dark-color);
    margin-bottom: 0;
}

.checkout-totals {
    margin-bottom: 30px;
}

.checkout-security {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-light-color);
}

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

.checkout-security p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    min-height: 500px;
    background-color: white;
}

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

.success-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-content h1 {
    margin-bottom: 20px;
    color: var(--success-color);
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-note {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 30px 0;
}

.next-steps {
    text-align: left;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

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

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    margin-bottom: 15px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.recommended-resources {
    padding: 80px 0;
    background-color: var(--light-color);
}

.recommended-resources h2, .recommended-resources > p {
    text-align: center;
}

.recommended-resources > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.resource-card p {
    margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-totals, .promo-code {
        width: 100%;
    }
    
    .promo-code {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .countdown-container h3 {
        font-size: 1rem;
    }
    
    #countdown {
        gap: 10px;
    }
    
    #countdown div span:first-child {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .header-price, .header-remove, .cart-price, .cart-remove {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    #countdown div span:first-child {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    #countdown div span:last-child {
        font-size: 0.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .header-quantity, .header-total {
        display: none;
    }
    
    .cart-product {
        flex-direction: column;
    }
    
    .cart-product img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cart-quantity {
        justify-content: center;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-actions a {
        width: 100%;
        text-align: center;
    }
}

/* Additional styles for the benefits section on the product3.html page */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit p {
    margin-bottom: 0;
}

/* Additional styles for the features section on the product4.html page */
.features-container {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

/* Additional styles for the instructors section on the product4.html page */
.instructors-grid {
    margin-top: 30px;
}

.instructor {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.instructor-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.credentials {
    font-style: italic;
    color: var(--medium-dark-color);
    margin-bottom: 15px;
}

.instructor-matching {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

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

/* Additional styles for the resources section on the product5.html page */
.resources-grid {
    margin-top: 30px;
}

.resource {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.resource-icon {
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.resource-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

/* Day schedule styles for product2.html */
.schedule-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.day-schedule {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.day-schedule h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.day-schedule td {
    padding: 10px;
    border-bottom: 1px solid var(--medium-light-color);
}

.day-schedule tr:last-child td {
    border-bottom: none;
}

.day-schedule td:first-child {
    width: 120px;
    font-weight: 600;
}

/* Curriculum sections styles for product2.html */
.curriculum-sections {
    margin-top: 30px;
}

.curriculum-section {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

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

.curriculum-section h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--medium-dark-color);
}
