/* Base Styles */
:root {
    --primary-color: #00539a;
    --primary-dark: #003b6e;
    --primary-light: #e6f0fa;
    --secondary-color: #d62828;
    --accent-color: #eab308;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #003b6e;
    --footer-text: #ffffff;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, 
.btn-secondary, 
.btn-tertiary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--background-alt);
}

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

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

.logo {
    display: flex;
    align-items: center;
}

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

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

nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

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

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

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

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

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

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--background-alt);
}

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

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

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

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

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

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

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

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

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

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
}

.cta {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
}

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

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

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

.about-products p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: justify;
}

.quality-assurance {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px auto;
    max-width: 900px;
}

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

.quality-assurance ul {
    list-style: disc;
    padding-left: 20px;
}

.quality-assurance li {
    margin-bottom: 10px;
}

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

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

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

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    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: 20px 20px 10px;
    font-size: 1.2rem;
}

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

.product-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

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

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

/* Terminology Section */
.terminology {
    padding: 80px 0;
    background-color: var(--background-alt);
}

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

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

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

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

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-light);
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
}

.subscription-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.subscription-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.subscription-counter {
    font-size: 0.9rem;
    color: var(--text-light);
}

#subscriber-count {
    font-weight: 700;
    color: var(--primary-color);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column a {
    color: var(--footer-text);
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.social-icons a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
}

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

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

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

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

.cookie-content a {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Product Detail Page */
.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

.product-detail {
    padding: 80px 0;
}

.product-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-image {
    flex: 1 1 400px;
}

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

.product-info {
    flex: 1 1 500px;
}

.product-info h1 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    margin-right: 10px;
    color: var(--accent-color);
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

.product-description li {
    margin-bottom: 8px;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector label {
    margin-right: 10px;
}

.quantity-selector select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: white;
}

.product-meta-info {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.meta-item svg {
    margin-right: 15px;
    color: var(--primary-color);
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background-color: var(--background-alt);
}

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

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

.cart-section {
    padding: 60px 0;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty svg {
    color: var(--text-light);
    margin: 0 auto 20px;
}

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

.cart-empty p {
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

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

.cart-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--background-alt);
    border-bottom: 2px solid var(--border-color);
}

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

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

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

.cart-item-details {
    margin-left: 15px;
}

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

.cart-item-price {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-quantity {
    width: 70px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-remove {
    color: var(--error-color);
    background: none;
    border: none;
    cursor: pointer;
}

.cart-summary {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
}

.cart-totals {
    margin-bottom: 30px;
}

.cart-totals h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.cart-actions {
    display: flex;
    gap: 15px;
}

.cart-actions a {
    flex: 1;
    text-align: center;
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background-color: var(--background-color);
}

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

/* Checkout Page */
.checkout-section {
    padding: 60px 0;
}

.checkout-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.checkout-form {
    flex: 2 1 600px;
}

.checkout-form h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

.order-summary {
    flex: 1 1 400px;
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    align-self: flex-start;
}

.order-summary h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.checkout-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

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

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

.checkout-item-price {
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkout-item-quantity {
    font-size: 0.9rem;
    margin-top: 5px;
}

.summary-totals {
    margin-bottom: 30px;
}

.secure-checkout {
    text-align: center;
    margin-bottom: 30px;
}

.secure-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.secure-icons svg {
    margin-right: 10px;
    color: var(--success-color);
}

.secure-checkout p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trust-badges img {
    height: 40px;
    width: auto;
    opacity: 0.7;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    text-align: center;
}

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

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

.success-message {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.success-details {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.follow-up {
    padding: 60px 0;
    background-color: var(--background-alt);
}

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

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

.step {
    text-align: center;
}

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

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

.recommended-products {
    padding: 60px 0;
}

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

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

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 2 1 600px;
}

.contact-form-container h3 {
    margin-bottom: 30px;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-card {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-card h3 {
    margin: 30px 0 20px;
}

.contact-card h3:first-child {
    margin-top: 0;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item .icon {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.business-hours {
    margin-bottom: 30px;
}

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

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

.social-connect .social-icons {
    justify-content: flex-start;
}

.map-section {
    padding: 60px 0;
    background-color: var(--background-alt);
}

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

.map-container {
    height: 400px;
    background-color: #e9e9e9;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.map-text h3 {
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

/* About Page */
.about-intro {
    padding: 60px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 2 1 600px;
}

.about-stats {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-content: flex-start;
}

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

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

.our-values {
    padding: 60px 0;
    background-color: var(--background-alt);
}

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

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

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

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

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

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-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: 250px;
    object-fit: cover;
}

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

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

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

.social-links {
    display: flex;
    padding: 0 20px 20px;
    gap: 15px;
}

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

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

.certifications {
    padding: 60px 0;
    background-color: var(--background-alt);
}

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

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

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

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

.certification h3 {
    margin-bottom: 15px;
}

.clients-section {
    padding: 60px 0;
}

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

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.client-logo {
    padding: 20px 30px;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    font-weight: 500;
}

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

.client-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.client-testimonial blockquote::before,
.client-testimonial blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
}

.client-testimonial cite {
    font-style: normal;
    font-weight: 500;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-light);
    text-align: center;
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 20px;
    }
    
    .product-actions {
        flex-wrap: wrap;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    
    .success-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .cart-table th:nth-child(3),
    .cart-table td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 576px) {
    header {
        height: auto;
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
