/* Base Styles and Variables */
:root {
    --primary-color: #4da6ff;
    --secondary-color: #ff9966;
    --accent-color: #66cc99;
    --dark-color: #333333;
    --light-color: #f9f9f9;
    --text-color: #444444;
    --link-color: #3385cc;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

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

/* Header & Navigation */
header {
    background-color: #ffffff;
    box-shadow: 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: 60px;
    width: auto;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-color);
    padding: 10px 0;
    position: relative;
}

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

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

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn:hover {
    background-color: #3385cc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(51, 133, 204, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius);
    display: inline-block;
}

.btn-small:hover {
    background-color: #3385cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(51, 133, 204, 0.3);
}

/* What You'll Learn Section */
.what-you-learn {
    padding: 80px 0;
    background-color: #ffffff;
}

.what-you-learn h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.learn-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.learn-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

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

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

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

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

.post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post h3 {
    margin: 15px 20px 10px;
}

.post p {
    margin: 0 20px 15px;
}

.post .btn-small {
    margin: 0 20px 20px;
}

.center {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3,
.footer-policies h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a,
.footer-policies a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0.8;
}

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

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

.social-icons a svg {
    color: white;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

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

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.btn-cookie.reject {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.cookie-more-info {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

/* Blog Page Styles */
.blog-filter {
    margin-bottom: 40px;
    text-align: center;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

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

.blog-content {
    padding: 60px 0;
}

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

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #777;
}

.blog-post h2 {
    margin-bottom: 15px;
}

.blog-post p {
    margin-bottom: 20px;
}

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

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

.subscribe h2 {
    color: white;
}

.subscribe-form {
    display: flex;
    margin: 30px 0 15px;
}

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

.subscribe-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    background-color: var(--dark-color);
}

.subscribe-form .btn:hover {
    background-color: #222;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* About Page Styles */
.about-mission {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-content h2:first-child {
    margin-top: 0;
}

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

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

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

.about-story p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.team-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

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

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

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

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

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 20px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.team-social a svg {
    color: var(--dark-color);
}

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

.team-social a:hover svg {
    color: white;
}

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

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

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

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

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

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light-color);
    border-radius: 50%;
}

.value-icon svg {
    color: var(--primary-color);
}

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

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

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

.partners-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.partner {
    text-align: center;
}

.partner img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner p {
    font-weight: 600;
}

/* Products Page Styles */
.products-categories {
    padding: 40px 0;
}

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

.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

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

.products-grid {
    padding: 40px 0 80px;
}

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

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

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

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

.product-info {
    padding: 20px;
}

.product-age {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.feature {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

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

.product-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

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

.product-bundles h2 {
    text-align: center;
    margin-bottom: 15px;
}

.product-bundles > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

.bundle {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.bundle-info {
    padding: 20px;
}

.bundle-includes {
    margin: 20px 0;
    padding-left: 20px;
}

.bundle-includes li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.bundle-includes li:before {
    content: '✓';
    position: absolute;
    left: -10px;
    color: var(--accent-color);
    font-weight: bold;
}

.bundle-price {
    margin: 20px 0;
}

.price-regular {
    text-decoration: line-through;
    color: #777;
}

.price-bundle {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.price-save {
    color: var(--accent-color);
    font-weight: 600;
}

.educational-approach {
    padding: 80px 0;
}

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

.approach-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.approach-item {
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background-color: var(--light-color);
    transition: var(--transition);
}

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

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

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

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

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

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

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

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

.info-item {
    display: flex;
    margin-top: 30px;
}

.info-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon svg {
    color: var(--primary-color);
}

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

.social-contact {
    margin-top: 40px;
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-body);
    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 2px rgba(77, 166, 255, 0.2);
}

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

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

.form-group.checkbox label {
    font-weight: normal;
    font-size: 0.9rem;
}

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

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

.map-container {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

/* Thank You Modal */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    color: white;
}

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

.close-btn {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle {
        grid-template-columns: 1fr;
    }
    
    .bundle-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-image img {
        height: 250px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: var(--radius);
        margin-bottom: 10px;
    }
    
    .subscribe-form .btn {
        border-radius: var(--radius);
    }
    
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        margin-bottom: 10px;
    }
}
