:root {
    --primary-color: #00a650;
    --secondary-color: #ffd700;
    --accent-color: #f5a700;
    --dark-color: #1a2942;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --line-height-base: 1.5;
    --heading-line-height: 1.2;
}

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

/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove default button styles */
button,
input,
textarea,
select {
    font: inherit;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

a:hover {
    color: #008a42;
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 2px;
}

ul {
    list-style: none;
}

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

p {
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

input, textarea, select {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Improve text legibility */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #008a42;
    color: var(--white);
}

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

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

.btn-tertiary {
    background-color: var(--gray-200);
    color: var(--gray-700);
}

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

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

.header-container,
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--gray-800);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

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

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

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

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

.cart-link svg {
    margin-right: 0.25rem;
}

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

.mobile-toggle,
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span,
.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-800);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section Styles */
.hero {
    background-image: linear-gradient(rgba(26, 41, 66, 0.7), rgba(26, 41, 66, 0.7)), url('https://source.unsplash.com/random/1600x800/?oil-industry');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

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

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

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

/* Advantages Section Styles */
.advantages {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

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

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

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

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.advantage-card h3,
.advantage-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
}

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

.stat-label {
    font-size: 1rem;
}

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

/* Product Information Section Styles */
.product-information,
.about-products {
    padding: 5rem 0;
    background-color: var(--white);
}

.product-information h2,
.about-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.info-content p,
.about-products p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.info-content h3,
.about-products h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.certifications,
.certification-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.cert-item,
.certification {
    display: flex;
    align-items: center;
    margin: 0.5rem;
}

.cert-item svg,
.certification svg {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.cert-item span,
.certification span {
    font-weight: 500;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 500;
    margin: 0.25rem;
}

/* Products Section Styles */
.products {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

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

.product-card {
    background-color: var(--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-image {
    height: 250px;
    overflow: hidden;
    background-color: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Image placeholder/fallback */
.product-image:not(:has(img)),
.product-image img[src=""],
.product-image img[src*="placeholder"] {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
}

/* Fallback for broken images */
.product-image img,
.product-image-large img,
.team-member img {
    position: relative;
}

.product-image img:before,
.product-image-large img:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f2f5 0%, #e4e7eb 100%);
}

.product-image img:after,
.product-image-large img:after {
    content: attr(alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(240,242,245,0.95) 0%, rgba(228,231,235,0.95) 100%);
}

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

.product-details,
.product-info {
    padding: 1.5rem;
}

.product-details h3,
.product-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.product-description,
.product-short-desc {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

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

.btn-view {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-view:hover {
    background-color: #008a42;
    color: var(--white);
}

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

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

/* Feedback Section Styles */
.feedback {
    padding: 5rem 0;
    background-color: var(--white);
}

.feedback h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.feedback-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.feedback-form h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.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(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-content,
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.footer-col h3,
.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col p,
.footer-column p {
    margin-bottom: 1rem;
}

.footer-col address,
.footer-column address {
    font-style: normal;
}

.footer-col address p,
.footer-column address p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-col address svg,
.footer-column address svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

.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%;
    transition: var(--transition);
}

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

.social-icons svg {
    color: var(--white);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
}

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

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 2rem auto 0;
}

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

.cookie-content {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-buttons a {
    margin-left: 1rem;
}

.cookie-more-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

/* Add to Cart Notification */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

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

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content svg {
    color: var(--success);
    margin-right: 0.75rem;
}

.notification-content p {
    margin: 0;
    font-weight: 500;
}

/* Product Detail Page */
.product-detail {
    padding: 3rem 0;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumbs a {
    color: var(--gray-600);
    margin-right: 0.5rem;
}

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

.breadcrumbs span {
    margin-left: 0.5rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-image-large {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 500px;
}

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

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e6f7ef;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.product-features ul {
    list-style: disc;
    margin-left: 1.5rem;
}

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

.product-specs {
    margin-bottom: 2rem;
}

.product-specs h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.spec-item {
    display: flex;
    flex-direction: column;
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.spec-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

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

.quantity-selector label {
    margin-right: 1rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-decrease,
.quantity-increase {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    font-size: 1.25rem;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
}

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

.product-actions .btn {
    flex: 1;
}

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

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.product-tabs {
    margin-bottom: 4rem;
}

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

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

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

.tab-content {
    display: none;
}

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

.tab-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.applications-list li {
    margin-bottom: 2rem;
}

.applications-list h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.documents-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.documents-list svg {
    margin-right: 0.75rem;
    color: var(--gray-700);
}

.related-products {
    margin-top: 4rem;
}

.related-products h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

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

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

.related-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.related-product-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.related-product-price {
    font-weight: bold;
    margin-bottom: 1.25rem;
}

/* About Page */
.about-hero {
    background-image: linear-gradient(rgba(26, 41, 66, 0.7), rgba(26, 41, 66, 0.7)), url('https://source.unsplash.com/random/1600x800/?oil-industry-corporate');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.about-hero-content h1,
.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-hero .lead {
    font-size: 1.5rem;
    color: var(--white);
}

.about-story,
.about-company {
    padding: 5rem 0;
}

.about-story-content,
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: start;
}

.about-story-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-story-text h2,
.about-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-story-text p,
.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--gray-700);
}

.mission-values {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.mission-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 3rem;
}

.mission-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.value-card h4,
.value-card h3,
.value-item h3,
.value-item h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.team,
.team-section {
    padding: 5rem 0;
}

.team h2,
.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.team-intro,
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--gray-700);
}

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

.team-member {
    background-color: var(--light-color);
    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: 300px;
    object-fit: cover;
}

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

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

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

.social-links {
    display: flex;
    padding: 0 1.5rem 1.5rem;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

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

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

.achievements {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

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

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

.achievement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.achievement-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.partners-logos {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.partners-logos h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-item svg {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.cta-section {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(26, 41, 66, 0.8), rgba(26, 41, 66, 0.8)), url('https://source.unsplash.com/random/1600x800/?oil-rig');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Our Expertise Section */
.our-expertise {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.our-expertise h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

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

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

.expertise-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.expertise-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

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

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.client-logo:hover {
    background-color: var(--gray-200);
    transform: translateY(-5px);
}

.client-logo svg {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.client-logo span {
    font-weight: 600;
    color: var(--gray-800);
}

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

.testimonial {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-author p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Beginner Guide Section */
.beginner-guide {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.beginner-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

.guide-text h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guide-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.guide-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.guide-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    background-color: var(--gray-800);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.video-placeholder svg {
    color: var(--white);
    margin-bottom: 1rem;
}

.video-placeholder span {
    color: var(--white);
    font-size: 1.125rem;
}

.consultation-offer {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.consultation-offer h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.consultation-offer p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Glossary Section (inside footer) */
footer .glossary {
    padding: 3rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

footer .glossary h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: var(--white);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.glossary-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glossary-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.glossary-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.glossary-item p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page */
.contact-hero {
    background-image: linear-gradient(rgba(26, 41, 66, 0.7), rgba(26, 41, 66, 0.7)), url('https://source.unsplash.com/random/1600x800/?office-modern');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-main {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

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

.contact-card {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-right: 1rem;
}

.contact-details h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-details address {
    font-style: normal;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

.social-connect h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.company-info {
    margin-top: 3rem;
}

.company-info h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.contact-form-container h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

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

.checkbox-group input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    width: auto;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

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

.form-success h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.global-locations {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.global-locations h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

.location-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.location-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.location-card address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.location-card p {
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
}

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

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

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

.faq-answer {
    padding: 0 1.5rem;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    height: auto;
}

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

/* Cart Page */
.cart-section {
    padding: 5rem 0;
}

.cart-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.cart-empty svg {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

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

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

.cart-content {
    display: none;
}

.cart-container {
    margin-bottom: 4rem;
}

.cart-items {
    margin-bottom: 2rem;
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    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-grow: 1;
}

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

.cart-item-price {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.quantity-label {
    margin-right: 0.5rem;
}

.cart-item-total {
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 2rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}

.cart-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.cart-summary h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.summary-label {
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background-color: var(--gray-300);
    margin: 1.5rem 0;
}

.summary-item.total {
    font-size: 1.25rem;
    font-weight: bold;
}

.coupon-container {
    margin: 2rem 0;
}

.coupon-container h4 {
    margin-bottom: 1rem;
}

.coupon-input {
    display: flex;
}

.coupon-input input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.coupon-input button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.checkout-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.secure-checkout svg {
    margin-right: 0.5rem;
}

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

.accepted-payment p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.recommended-products {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

.customer-support {
    padding: 5rem 0;
}

.customer-support h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

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

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

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

.support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

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

.support-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

/* Checkout Page */
.checkout-section {
    padding: 5rem 0;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-200);
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-divider {
    width: 100px;
    height: 2px;
    background-color: var(--gray-300);
}

.checkout-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.checkout-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.checkout-form-container h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.checkout-summary {
    height: fit-content;
}

.summary-container {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.summary-container h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
}

.checkout-items {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.item-name {
    font-weight: 500;
}

.item-quantity {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: normal;
}

.item-price {
    font-weight: 500;
}

.summary-totals {
    margin-bottom: 2rem;
}

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

.summary-row.total {
    font-size: 1.25rem;
    font-weight: bold;
}

.empty-checkout {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.support-info {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-300);
}

.support-info h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

.support-info p {
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Success Page */
.success-section {
    padding: 5rem 0;
}

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

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
}

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

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

.success-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.success-message {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    text-align: left;
}

.success-message p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

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

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

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 166, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.support-contact {
    margin-bottom: 3rem;
}

.support-contact h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-content,
    .about-story-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        z-index: 900;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .mobile-toggle,
    .mobile-nav-toggle {
        display: flex;
    }

    .header-container,
    .header-content {
        padding: 1rem;
    }

    .about-grid,
    .about-story-content,
    .guide-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .glossary-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .advantages h2,
    .product-information h2,
    .products h2,
    .feedback h2,
    .mission-values h2,
    .team h2,
    .achievements h2,
    .global-locations h2,
    .faq-section h2,
    .cart-section h1,
    .recommended-products h2,
    .customer-support h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .product-detail-content {
        gap: 2rem;
    }
    
    .product-image-large {
        height: 300px;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-divider {
        width: 2px;
        height: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions a,
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .advantages-grid,
    .products-grid,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .locations-grid,
    .recommended-grid,
    .support-options,
    .steps-grid,
    .expertise-grid,
    .testimonials,
    .client-logos {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .footer-content,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .success-actions,
    .cta-buttons {
        flex-direction: column;
    }

    .glossary-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .cookie-banner,
    .cookie-notice,
    .mobile-nav-toggle,
    .mobile-toggle,
    .notification,
    .cta-section,
    .beginner-guide,
    button {
        display: none !important;
    }
    
    body {
        background-color: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    main {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        text-decoration: underline;
        color: black;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
    
    .product-card,
    .advantage-item,
    .value-item,
    .expertise-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Dark Mode (if needed) 
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #1edc74;
        --secondary-color: #ffd700;
        --accent-color: #f5a700;
        --dark-color: #121212;
        --light-color: #1e1e1e;
        --white: #1a1a1a;
        --gray-100: #1e1e1e;
        --gray-200: #2d2d2d;
        --gray-300: #3d3d3d;
        --gray-400: #4d4d4d;
        --gray-500: #5d5d5d;
        --gray-600: #858585;
        --gray-700: #ababab;
        --gray-800: #d1d1d1;
        --gray-900: #f8f8f8;
        --black: #ffffff;
        --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    body {
        color: var(--gray-200);
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: var(--gray-100);
    }
    
    .advantage-card,
    .product-card,
    .value-card,
    .achievement-card,
    .partners-logos,
    .mission-box,
    .cart-item,
    .cart-summary,
    .support-card:hover,
    .checkout-form-container,
    .step-card {
        background-color: var(--gray-800);
    }
    
    .advantage-icon,
    .value-icon,
    .achievement-icon,
    .step-icon {
        background-color: rgba(30, 220, 116, 0.2);
    }
    
    .nav-links a {
        color: var(--gray-200);
    }
    
    .logo-item svg {
        color: var(--gray-400);
    }
}
*/
