/* Global Styles */
:root {
    --primary-color: #1a3a6d; /* Deep blue */
    --secondary-color: #5be95b; /* Lime green */
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-color: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e5eb;
    --dark-gray: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-height: 300px;
}

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

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

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

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: #4cd94c;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: #294d80;
    color: var(--light-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

/* Header */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

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

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

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

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(26, 58, 109, 0.9), rgba(26, 58, 109, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* History Day Section */
.history-day {
    background-color: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.history-day h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.history-day p {
    max-width: 800px;
    margin: 0 auto;
}

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

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

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

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

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: black;
}

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

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

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

.stat p {
    font-size: 1.1rem;
    font-weight: 600;
}

.cta {
    text-align: center;
}

/* Product Info Section */
.product-info {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.product-info h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.product-info p {
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.quality-guarantees {
    max-width: 800px;
    margin: 40px auto;
}

.quality-guarantees h3 {
    text-align: center;
    margin-bottom: 20px;
}

.quality-guarantees ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
}

.quality-guarantees li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quality-guarantees svg {
    color: var(--success-color);
}

.company-history {
    margin-top: 40px;
}

.company-history h3 {
    text-align: center;
    margin-bottom: 20px;
}

.company-history p {
    text-align: center;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

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

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

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.product-card h3 {
    font-size: 1.3rem;
    padding: 15px 20px 5px;
    color: black;
}

.product-card p {
    padding: 0 20px 15px;
    color: var(--dark-gray);
}

.product-card .price {
    padding: 0 20px 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.product-card .actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.product-card .actions a,
.product-card .actions button {
    flex: 1;
}

.product-card.small {
    display: flex;
    flex-direction: column;
}

.product-card.small img {
    height: 160px;
}

.product-card.small .price {
    margin-top: auto;
    padding-bottom: 5px;
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--light-text);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 350px;
}

.testimonial .quote {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.testimonial .author {
    font-weight: 600;
    text-align: right;
}

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

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-logo h3 {
    color: var(--light-text);
    margin-bottom: 5px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: var(--light-text);
}

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

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

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

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

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

.social-icons a svg {
    color: var(--light-text);
}

.social-icons a:hover svg {
    color: var(--primary-color);
}

.social-icons.large a {
    width: 60px;
    height: 60px;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 1200px;
    margin: 0 auto;
    transition: var(--transition);
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    padding: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-link {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.cookie-link a {
    text-decoration: underline;
}

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

.breadcrumb {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

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

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

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

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

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

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: var(--warning-color);
    display: flex;
}

.students {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
}

.product-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.product-info .actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-features {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

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

.feature:last-child {
    margin-bottom: 0;
}

.feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-description h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.product-description h3 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

.product-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.product-description ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.course-modules {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.module {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.testimonial-box .testimonial {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.testimonial-box .testimonial .quote {
    color: var(--primary-color);
}

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

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

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

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-page h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 60px;
}

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

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

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

.cart-items-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.cart-items {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 20px;
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-color);
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 5px;
}

.cart-item-remove {
    background-color: transparent;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    margin-left: 20px;
}

.cart-summary {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.cart-summary h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
    margin-bottom: 30px;
}

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

/* Checkout Page */
.checkout-page {
    padding: 80px 0;
}

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

.step {
    position: relative;
    padding: 0 40px;
    color: var(--dark-gray);
}

.step::after {
    content: '>';
    position: absolute;
    right: 0;
}

.step:last-child::after {
    display: none;
}

.step.active {
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.checkout-form-container h2 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkout-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.checkout-summary {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

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

.checkout-items {
    margin-bottom: 20px;
}

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

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

.checkout-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-item-quantity {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--success-color);
    font-weight: 600;
}

/* Success Page */
.success-page {
    padding: 80px 0;
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    box-shadow: var(--shadow);
}

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

.success-container h1 {
    margin-bottom: 20px;
}

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

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

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

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

.step-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
}

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

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

/* Contact Page */
.contact-hero {
    background: linear-gradient(to right, rgba(26, 58, 109, 0.9), rgba(26, 58, 109, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

.contact-hero h1 {
    color: var(--light-text);
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.form-container p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.map-container h2 {
    margin-bottom: 20px;
}

.map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.social-connections h3 {
    margin-bottom: 20px;
}

.registration-info {
    margin-top: 30px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

/* About Page */
.about-hero {
    background: linear-gradient(to right, rgba(26, 58, 109, 0.9), rgba(26, 58, 109, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

.about-hero h1 {
    color: var(--light-text);
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.stat-label {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.mission h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.mission p {
    font-size: 1.2rem;
}

.values h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

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

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

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

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

.partners-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.partners-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

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

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

.partner-logo {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-section {
    background: linear-gradient(to right, rgba(26, 58, 109, 0.9), rgba(26, 58, 109, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

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

.notification-content {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Toolkit Components */
.toolkit-components {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.component {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.component h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.component ul {
    padding-left: 20px;
}

.component ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

/* Program Weeks */
.program-weeks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.week {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.week h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.week p {
    margin-bottom: 15px;
}

.week ul {
    padding-left: 20px;
}

.week ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.results {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.result {
    margin-bottom: 30px;
}

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

.result ul {
    padding-left: 20px;
}

.result ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
    
    .cart-items-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
        margin-top: 40px;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .stat {
        width: 50%;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 20px 0;
    }
    
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits h2,
    .product-info h2,
    .products h2,
    .story-content h2,
    .mission h2,
    .values h2,
    .team-section h2,
    .partners-section h2,
    .cta-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .product-info .actions {
        flex-direction: column;
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .stat {
        width: 100%;
    }
    
    .checkout-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .nav ul {
        gap: 15px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cart-item-remove {
        margin-left: auto;
        margin-top: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    header, footer, .contact-form-section, .cta-section, .cookie-consent {
        display: none;
    }
    
    body, html {
        background-color: #fff;
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    .product-container, .checkout-container {
        display: block;
    }
    
    .product-image, .checkout-summary {
        margin-bottom: 2cm;
    }
}
.footer-content a,h3{
    color: white;
}
.cart-summary h3{
    color: black;
}