/* Base Styles */
:root {
    --primary-color: #2c5282;
    --primary-dark: #234876;
    --primary-light: #4299e1;
    --secondary-color: #e2e8f0;
    --text-color: #2d3748;
    --text-light: #718096;
    --accent-color: #f6ad55;
    --success-color: #48bb78;
    --error-color: #f56565;
    --background-color: #f8fafc;
    --card-background: #ffffff;
    --border-color: #e2e8f0;
    --border-radius: 6px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.75em;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

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

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

.secondary-btn:hover {
    background-color: #d1d9e6;
}

.view-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-menu {
    display: flex;
    gap: 2rem;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.main-menu a:hover:after,
.main-menu a.active:after {
    width: 100%;
}

.main-menu a.active {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.cart-icon a.active {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--secondary-color);
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--text-light);
}

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

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

.breadcrumbs li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

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

.hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.75rem;
}

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

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.advantage-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--card-background);
}

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

.advantage-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-light);
}

.cta-block {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.cta-block h3 {
    margin-bottom: 1.5rem;
}

/* About Products Section */
.about-products {
    padding: 4rem 0;
    background-color: var(--background-color);
    margin-bottom: 3rem;
}

.about-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about-products-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-products p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-guarantees {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.product-guarantees h4 {
    margin-bottom: 1rem;
}

.product-guarantees ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.product-guarantees li {
    margin-bottom: 0.5rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    height: 60px;
    overflow: hidden;
}

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

.product-actions {
    display: flex;
    gap: 0.5rem;
}

/* Product Small for Related Products */
.product-card.small {
    max-width: 250px;
}

.product-card.small .product-image {
    height: 150px;
}

.product-card.small .product-info {
    padding: 1rem;
}

.product-card.small .product-info h3 {
    font-size: 1rem;
}

.product-card.small .product-price {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Related Products Section */
.related-products {
    padding: 3rem 0;
    background-color: var(--background-color);
    margin-top: 3rem;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* Random Fact Section */
.random-fact {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 3rem;
}

.random-fact h2 {
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
}

.fact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #2d3748;
    color: white;
    padding-top: 3rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #a0aec0;
}

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

.footer-section.links ul li {
    margin-bottom: 0.5rem;
}

.footer-section.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #a0aec0;
    font-size: 0.875rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 55, 72, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Product Details Page */
.product-details {
    padding: 3rem 0;
}

.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-image-large {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-detailed {
    flex: 1;
    min-width: 300px;
}

.product-info-detailed h1 {
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.product-price-block {
    margin-bottom: 1.5rem;
}

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

.product-tax {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-short-description {
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

.quantity-btn.minus {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.plus {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity-selector input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-tabs {
    margin-top: 3rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-panel {
    display: none;
    padding: 1rem 0;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:nth-child(odd) {
    background-color: var(--secondary-color);
}

.specs-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
}

.specs-table td:first-child {
    font-weight: 500;
    width: 40%;
}

/* Cart Page */
.cart {
    padding: 3rem 0;
}

.cart h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.empty-cart-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cart-empty h2 {
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cart-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cart-items {
    flex: 2;
    min-width: 300px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1.5rem;
}

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

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

.cart-item-details h3 {
    margin-bottom: 0.5rem;
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 36px;
    border-left: none;
    border-right: none;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 1.5rem;
}

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

.remove-item:hover {
    color: var(--error-color);
}

.cart-summary {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
}

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

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

.checkout-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.continue-shopping {
    width: 100%;
}

/* Checkout Page */
.checkout {
    padding: 3rem 0;
}

.checkout h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.checkout-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.checkout-form {
    flex: 1.5;
    min-width: 300px;
}

.checkout-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: calc(50% - 0.5rem);
    display: inline-block;
}

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

.form-group:nth-child(odd) {
    margin-right: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.order-summary {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.order-summary h2 {
    margin-bottom: 1.5rem;
}

.order-items {
    margin-bottom: 1.5rem;
}

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

.order-item-name h4 {
    margin-bottom: 0.25rem;
}

.order-item-name p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.order-item-total {
    font-weight: 700;
}

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

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

/* Success Page */
.success-page {
    padding: 4rem 0;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.success-content h1 {
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.success-instructions {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-actions {
    margin-top: 2rem;
}

/* About Page */
.about-hero {
    padding: 4rem 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    margin-bottom: 3rem;
}

.about-hero h1 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.our-mission {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

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

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

.our-values {
    padding: 4rem 0;
    background-color: var(--background-color);
    margin-bottom: 3rem;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
}

.our-team {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.our-team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

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

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

.partners-section {
    padding: 4rem 0;
    background-color: var(--background-color);
    margin-bottom: 3rem;
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.partners-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.partners-list li {
    margin-bottom: 0.75rem;
}

.certifications {
    padding: 4rem 0;
    background-color: white;
    margin-bottom: 3rem;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.certification-item {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.certification-item h3 {
    margin-bottom: 0.5rem;
}

.certification-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    display: flex;
    align-items: flex-start;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.social-contacts {
    margin-top: 3rem;
}

.social-contacts h3 {
    margin-bottom: 1.5rem;
}

.contact-form-container {
    flex: 1.5;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.consent-checkbox {
    display: flex;
    align-items: center;
}

.consent-checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

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

.departments {
    padding: 4rem 0;
    background-color: var(--background-color);
    margin-bottom: 3rem;
}

.departments h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.department-card {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.department-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.department-card h3 {
    margin-bottom: 1rem;
}

.department-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.department-card a {
    font-weight: 500;
}

.faq-section {
    padding: 4rem 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

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

.faq-toggle {
    transition: var(--transition);
}

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

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

.faq-answer p {
    padding: 0 0 1.5rem;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-menu {
        margin-bottom: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .advantages-grid,
    .values-grid,
    .team-grid,
    .certifications-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content,
    .product-layout,
    .cart-content,
    .checkout-content,
    .contact-content {
        flex-direction: column;
    }
    
    .form-group,
    .form-group:nth-child(odd) {
        width: 100%;
        margin-right: 0;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-image {
        margin-right: 1rem;
    }
    
    .cart-item-quantity,
    .cart-item-total {
        margin: 1rem 0;
    }
    
    .remove-item {
        margin-left: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
