:root {
    --primary: #0c2e60;
    --secondary: #77dd77;
    --secondary-light: #a0eea0;
    --dark: #333333;
    --light: #f5f5f5;
    --gray: #e0e0e0;
    --white: #ffffff;
    --text-dark: #222222;
    --text-light: #666666;
    --border: #dddddd;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

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

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.btn-primary:hover {
    background-color: #0a2650;
    color: var(--white);
}

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

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

.btn-primary.full-width, .btn-secondary.full-width {
    width: 100%;
    display: block;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    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-links {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links a.active, .nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

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

.hero .subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta {
    text-align: center;
}

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

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

.about-courses p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
}

.quality-guarantee, .history {
    margin-top: 40px;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--light);
}

.quality-guarantee h3, .history h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

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

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

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

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

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    background-color: var(--white);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-dark);
}

.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;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.product-actions .btn-secondary, .product-actions .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

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

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.quote {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.author {
    margin-top: 20px;
    font-style: italic;
}

.name {
    font-weight: 700;
    margin-bottom: 5px;
}

/* Fun Fact Section */
.fun-fact {
    padding: 40px 0;
    background-color: var(--white);
}

.fact-box {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fact-box h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Language Toggle */
.language-toggle {
    padding: 60px 0;
    background-color: var(--light);
}

.language-box {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.language-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.language-box p {
    text-align: center;
    margin-bottom: 20px;
}

.language-box ul {
    list-style-type: none;
    columns: 2;
    column-gap: 30px;
}

.language-box li {
    margin-bottom: 10px;
    break-inside: avoid;
}

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

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

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--white);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.alternate-contact {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie.customize, .btn-cookie.decline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-cookie:hover {
    opacity: 0.9;
}

.cookie-policy {
    color: var(--secondary);
    margin-left: 15px;
}

/* Cart Notification */
.notification {
    position: fixed;
    top: 20px;
    right: -300px;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px var(--shadow-dark);
    z-index: 9999;
    transition: right 0.3s ease;
}

.notification.show {
    right: 20px;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

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

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

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.product-detail .product-image {
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.product-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.product-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 5px;
}

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

.product-description ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.product-description ul li {
    margin-bottom: 8px;
}

.quantity {
    margin-bottom: 20px;
}

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

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

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border: 1px solid var(--border);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-meta-info {
    margin-top: 30px;
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
}

.product-meta-info p {
    margin-bottom: 10px;
}

.product-meta-info i {
    color: var(--primary);
    margin-right: 8px;
}

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

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-panel {
    display: none;
}

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

.curriculum-module {
    margin-bottom: 25px;
}

.curriculum-module h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.curriculum-module ul li {
    margin-bottom: 5px;
}

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

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

.reviewer {
    font-weight: 600;
}

.review-text {
    margin-bottom: 0;
}

.related-products h2 {
    margin-bottom: 30px;
}

/* Product Price with Savings */
.product-price-savings {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

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

.savings-tag {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

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

.cart-items {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    padding: 30px;
    min-height: 300px;
}

.cart-item {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin-bottom: 10px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

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

.remove-btn:hover {
    color: #e74c3c;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    text-align: center;
}

.empty-cart-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.empty-cart-message p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cart-summary {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    padding: 30px;
    position: sticky;
    top: 100px;
}

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

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

.summary-row.total {
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-actions {
    margin: 25px 0;
}

.cart-actions button, .cart-actions a {
    margin-bottom: 10px;
    width: 100%;
    display: block;
    text-align: center;
}

.cart-notes {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cart-notes p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-notes i {
    color: var(--primary);
    margin-right: 8px;
}

.cart-recommendations {
    margin-top: 60px;
}

.cart-recommendations h2 {
    margin-bottom: 30px;
}

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

.checkout-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.breadcrumb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.breadcrumb-step.active .step-number {
    background-color: var(--primary);
    color: var(--white);
}

.breadcrumb-divider {
    width: 60px;
    height: 2px;
    background-color: var(--gray);
    margin: 0 10px;
}

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

.checkout-form-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    padding: 30px;
}

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

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

.form-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

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

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

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    min-width: 16px;
}

.checkout-agreement {
    margin-bottom: 25px;
}

.checkout-order-summary {
    position: sticky;
    top: 100px;
}

.order-summary-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    padding: 30px;
}

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

.checkout-items {
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: auto;
}

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

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

.item-image {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

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

.item-details {
    flex: 1;
}

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

.item-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-price {
    color: var(--primary);
    font-weight: 600;
}

.summary-totals {
    margin-bottom: 20px;
}

.checkout-security {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.checkout-security p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-security i {
    color: var(--primary);
    margin-right: 8px;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    background-color: var(--light);
}

.success-content {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.success-message {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

.what-next {
    margin: 40px 0;
    text-align: left;
}

.what-next ul {
    list-style-type: none;
    padding: 0;
}

.what-next ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.what-next ul li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

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

.follow-up {
    padding: 60px 0;
}

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

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

.support-option {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.support-option .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.support-option h3 {
    margin-bottom: 15px;
}

.support-option .link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

/* Contact Page */
.page-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

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

.contact-section {
    padding: 80px 0;
}

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

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

.contact-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.contact-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.social-connect {
    grid-column: 1 / -1;
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.social-connect h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-form {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.map-section {
    padding: 40px 0 80px;
}

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

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-section {
    padding: 60px 0;
    background-color: var(--light);
}

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

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

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
}

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

/* About Page */
.about-mission {
    padding: 80px 0;
    background-color: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.values-list {
    list-style-type: none;
    padding: 0;
}

.values-list li {
    display: flex;
    margin-bottom: 25px;
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
}

.value-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    min-width: 30px;
}

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

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

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.timeline-content {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
}

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

.about-impact {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.stat-label {
    font-size: 1rem;
}

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

.impact-stories h3 {
    text-align: center;
    margin-bottom: 30px;
}

.story-card {
    background-color: var(--light);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.story-quote {
    position: relative;
    padding-left: 30px;
}

.story-quote i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.story-author {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-dark);
}

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

.team-member h3, .team-member p {
    padding: 0 20px;
}

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

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.team-member .social-icons {
    margin: 20px;
    justify-content: center;
}

.team-member .social-icons a {
    background-color: var(--light);
    color: var(--primary);
}

.partnerships {
    padding: 60px 0;
    background-color: var(--white);
}

.partnerships h2, .partnerships p {
    text-align: center;
}

.partnerships p {
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.partner {
    background-color: var(--light);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.partner h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.message-sent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

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

.message-content {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.message-content i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-content, .checkout-content, .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary, .checkout-order-summary {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 30px;
    }
    
    .checkout-breadcrumb {
        flex-wrap: wrap;
    }
    
    .language-box ul {
        columns: 1;
    }
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions .btn-secondary, .product-actions .btn-primary {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
