/* Global Styles */
:root {
    --primary-color: #e4572e;
    --secondary-color: #29335c;
    --accent-color: #f3a712;
    --dark-color: #2d2a32;
    --light-color: #f8f8f8;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --border-color: #ddd;
    --container-width: 1200px;
    --container-padding: 0 15px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

.btn, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

.btn:hover {
    background-color: #d04120;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #1f274b;
    color: white;
}

.btn-cookie {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie:hover {
    background-color: #ddd;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
}

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

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

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

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?budapest');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

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

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

/* Advantages Section */
.advantages {
    background-color: white;
    text-align: center;
}

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

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

.advantage-card {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.advantage-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.stat-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
}

.cta h3 {
    margin-bottom: 20px;
}

/* About Courses Section */
.about-courses {
    background-color: var(--light-color);
}

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

.about-courses h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.quality-guarantees {
    margin-top: 30px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Expert Interview */
.expert-interview {
    background-color: white;
}

.interview-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.expert-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
}

.expert-icon {
    font-size: 100px;
}

.interview-text h3 {
    margin-bottom: 20px;
}

.interview-text p strong {
    color: var(--secondary-color);
}

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

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

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

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

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

.product-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

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

.product-card p {
    padding: 0 15px;
    margin-bottom: 15px;
}

.product-card .btn, .product-card .btn-secondary {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
}

.product-card .btn-secondary {
    margin-bottom: 10px;
}

/* Product Detail */
.product-detail {
    background-color: white;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: var(--gray-color);
}

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

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

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

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

.product-info {
    display: flex;
    flex-direction: column;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.product-rating i {
    color: var(--accent-color);
}

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

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

.product-features ul {
    list-style: none;
}

.product-features li {
    margin-bottom: 10px;
}

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

.quantity {
    margin-bottom: 20px;
}

.quantity select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-left: 10px;
}

.product-actions .btn, .product-actions .btn-secondary {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.product-description {
    margin-top: 40px;
}

.product-description h2 {
    margin-bottom: 20px;
}

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

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

.expert-opinion {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.expert-opinion blockquote {
    font-style: italic;
    margin-bottom: 10px;
}

.expert-opinion footer {
    text-align: right;
    font-weight: 600;
}

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

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

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

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

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-card .price {
    padding: 0 15px 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.related-card .btn-secondary {
    display: block;
    margin: 0 15px 15px;
    text-align: center;
}

/* Cart Section */
.cart-section {
    background-color: white;
}

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

.empty-cart-icon {
    font-size: 5rem;
    color: var(--light-gray);
    margin: 20px 0;
}

.cart-items {
    display: none;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-header {
    display: flex;
    background-color: var(--light-gray);
    font-weight: 600;
}

.cart-cell {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-cell.header {
    text-align: left;
}

.cart-row {
    display: flex;
}

.cart-row:nth-child(even) {
    background-color: #f9f9f9;
}

.cart-cell:nth-child(1) {
    flex: 3;
}

.cart-cell:nth-child(2), 
.cart-cell:nth-child(3), 
.cart-cell:nth-child(4), 
.cart-cell:nth-child(5) {
    flex: 1;
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
}

.cart-total {
    width: 350px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

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

.grand-total {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

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

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

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

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

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

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

.suggested-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.suggested-card .price {
    padding: 0 15px 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.suggested-card .btn, .suggested-card .btn-secondary {
    display: block;
    margin: 0 15px 15px;
    text-align: center;
}

.suggested-card .btn-secondary {
    margin-bottom: 10px;
}

/* Checkout Section */
.checkout-section {
    background-color: white;
}

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

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

.form-group {
    margin-bottom: 20px;
    width: 48%;
    display: inline-block;
}

.form-group.full-width {
    width: 100%;
}

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

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

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

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

.order-summary {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    align-self: flex-start;
}

.order-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

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

.order-item-price, .order-item-quantity {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.order-totals {
    margin-top: 20px;
}

/* Secure Checkout */
.secure-checkout {
    background-color: var(--light-color);
    text-align: center;
}

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

.security-item {
    display: flex;
    align-items: center;
}

.security-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Success Section */
.success-section {
    background-color: white;
    text-align: center;
}

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

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

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

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

.next-steps ul {
    list-style: none;
}

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

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

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

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    color: white;
}

/* Contact Info */
.contact-info {
    background-color: white;
}

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

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

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

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

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

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

.contact-social a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--light-color);
}

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

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

.contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/600x800/?budapest');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.contact-testimonial {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 80%;
}

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

.contact-testimonial blockquote {
    font-style: italic;
    margin-bottom: 10px;
}

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

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--light-gray);
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Map Section */
.map-section {
    background-color: var(--light-color);
}

.map-container {
    height: 400px;
    background-color: #eee;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    position: relative;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-color);
}

.map-marker {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.direction-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Our Story */
.our-story .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mission, .vision {
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.mission {
    background-color: rgba(233, 76, 41, 0.1);
}

.vision {
    background-color: rgba(41, 51, 92, 0.1);
}

.story-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.stats-box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.stat span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Methodology */
.methodology {
    background-color: var(--light-color);
    text-align: center;
}

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

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

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

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

.methodology-testimonial {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
}

.methodology-testimonial blockquote {
    font-style: italic;
    margin-bottom: 10px;
}

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

/* Team Section */
.team-section {
    background-color: white;
}

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

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

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

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

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

.team-card p {
    margin: 0 15px 10px;
}

.team-card p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.team-card .social-icons a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 40px auto 20px;
    position: relative;
}

.testimonial-slide {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.author-info {
    text-align: left;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    margin: 0;
    color: var(--gray-color);
    font-style: normal;
}

.testimonial-rating i {
    color: var(--accent-color);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/random/1600x900/?hungary');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

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

/* 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-links h3 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: #ccc;
}

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

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

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

.footer-contact i {
    margin-right: 10px;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p a {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: calc(100vh - 80px);
        top: 80px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 99;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .product-container, .contact-form-section .container, .checkout-container, .our-story .container {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-group {
        width: 100%;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cart-header, .cart-row {
        display: block;
    }
    
    .cart-cell {
        text-align: right;
    }
    
    .cart-cell:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
    }
    
    .cart-summary {
        width: 100%;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .security-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .directions {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Active FAQ Item */
.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}
