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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    word-break: break-word;
}

/* CSS Custom Properties */
:root {
    --primary-color: #e05a46;
    --primary-dark: #c44a36;
    --primary-light: #e8796a;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --background-color: #fff;
    --background-light: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-light: 0 1px 5px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

.btn-secondary:hover {
    background-color: #34495e;
    border-color: #34495e;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Icons */
.icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    background-color: var(--primary-color);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header .contact-info {
    flex-direction: row;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
}

.main-header {
    padding: 16px 0;
}

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

.logo-img {
    height: 50px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    color: var(--text-color);
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.section-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Company Info Section */
.company-info {
    background-color: var(--background-light);
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

.benefit-svg {
    width: 60px;
    height: 60px;
}

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

/* Products Showcase */
.products-showcase {
    background-color: var(--background-light);
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-category {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background-color: white;
    border-radius: var(--border-radius);
}

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

/* Customer Reviews */
.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reviews-grid {
    display: grid;
    gap: 30px;
}

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

.review-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-item cite {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 15px;
    display: block;
}

/* Newsletter Subscription */
.newsletter-subscription {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subscription-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.subscription-text p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.subscription-benefits {
    margin-bottom: 2rem;
}

.benefit {
    color: white;
    margin-bottom: 10px;
    opacity: 0.9;
}

.subscription-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
}

.subscription-image {
    width: 100%;
    max-width: 200px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 90, 70, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 20px;
    filter: invert(20%) brightness(1000%);
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    margin: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-contact .icon {
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Catalog Styles */
.catalog-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.catalog-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

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

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

.category-image {
    padding: 30px;
    text-align: center;
    background-color: var(--background-light);
}

.category-svg {
    width: 80px;
    height: 80px;
}

.category-content {
    padding: 30px;
}

.category-details {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.age-range {
    font-weight: 500;
}

.product-count {
    color: var(--primary-color);
}

/* Age Groups */
.age-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.age-group {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.age-group ul {
    margin-left: 20px;
}

.age-group li {
    margin-bottom: 8px;
}

/* Quality Assurance */
.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-features {
    margin-top: 30px;
}

.feature {
    margin-bottom: 20px;
}

.feature h4 {
    color: var(--success-color);
    margin-bottom: 8px;
}

/* Educational Games Styles */
.educational-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.learning-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.learning-categories .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

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

.category-icon {
    text-align: center;
    margin-bottom: 20px;
}

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

.category-examples {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.category-examples h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.category-examples ul {
    margin-left: 20px;
}

.category-examples li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Age Tabs */
.age-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.age-tab {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background-color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.age-tab.active,
.age-tab:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.age-content {
    position: relative;
}

.age-panel {
    display: none;
}

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

.age-panel-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.activity-item {
    padding: 25px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.activity-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Learning Tips */
.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tips-list {
    display: grid;
    gap: 30px;
}

.tip-item {
    padding: 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

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

/* Contact Styles */
.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

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

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

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

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

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-icon {
    flex-shrink: 0;
}

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

.contact-text-info a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-text-info small {
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}

.office-hours {
    margin-bottom: 40px;
}

.hours-list {
    margin-top: 20px;
}

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

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

.day {
    font-weight: 500;
}

.time {
    color: var(--text-light);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--background-light);
    border-color: var(--primary-color);
}

/* How to Buy */
.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

.payment-info {
    text-align: center;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-method {
    color: var(--success-color);
    font-weight: 500;
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-color);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: bold;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

/* Thank You Page */
.thank-you-section {
    background-color: var(--background-light);
    padding: 100px 0;
}

.thank-you-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.thank-you-icon {
    text-align: center;
}

.thank-you-image {
    width: 100%;
    max-width: 300px;
}

.thank-you-text h1 {
    color: var(--success-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.thank-you-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.steps-list {
    margin-top: 30px;
}

.next-steps .step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    text-align: left;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.next-steps .step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-info-box {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

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

.thank-you-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.related-content {
    background-color: white;
}

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

.content-item {
    text-align: center;
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.content-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.content-svg {
    width: 60px;
    height: 60px;
}

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

.content-link {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

.newsletter-text p {
    color: white;
    opacity: 0.9;
}

.newsletter-form-container {
    flex-shrink: 0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.newsletter-form input {
    min-width: 250px;
}

/* About Page Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

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

.value-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

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

.value-svg {
    width: 60px;
    height: 60px;
}

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

.team-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.team-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

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

.stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    color: white;
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Legal Content */
.legal-content {
    background-color: var(--background-light);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-text h3 {
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-bottom: 20px;
}

.legal-text li {
    margin-bottom: 8px;
}

.cookie-table {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.cookie-preferences {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .company-content,
    .products-content,
    .reviews-content,
    .subscription-content,
    .educational-content,
    .catalog-hero-content,
    .quality-content,
    .tips-content,
    .contact-hero-content,
    .story-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .top-header {
        display: none;
    }
    
    
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .categories-grid,
    .age-groups-grid,
    .values-grid,
    .buy-steps,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .age-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .catalog-stats,
    .team-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .learning-benefits {
        grid-template-columns: 1fr;
    }
    
    .contact-highlights {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .legal-text {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .activities-grid,
    .tips-list {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        padding: 30px 20px;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 30px 20px;
    }
    
    .subscription-form {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .contact-cta,
    .newsletter-subscription,
    .newsletter-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .legal-text {
        box-shadow: none;
        padding: 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #cc0000;
        --text-color: #000000;
        --background-color: #ffffff;
        --border-color: #000000;
    }
}
