/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #004085;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-text: #777;
    --lightest-text: #999;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --container-width: 1200px;
}

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

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

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

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

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

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

ul {
    list-style: none;
}

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

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

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

.btn-secondary {
    background-color: var(--light-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

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

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

.btn-tertiary:hover {
    background-color: #f1f1f1;
    color: var(--text-color);
}

.full-width {
    width: 100%;
}

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

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

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

.cart-link {
    position: relative;
    padding-right: 10px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

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

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--text-color);
}

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

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card .icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
    text-align: center;
}

.stat {
    padding: 20px;
}

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

.cta-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 40px;
}

.cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

.cta-banner .btn:hover {
    background-color: #f0f0f0;
}

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

.about-products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.product-info {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.product-info p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.product-info h3 {
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.certification {
    background-color: rgba(0, 86, 179, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    display: flex;
    align-items: center;
}

.certification i {
    font-size: 40px;
    color: var(--primary-color);
    margin-right: 20px;
}

.certification p {
    margin: 0;
    font-style: italic;
}

/* Financial Chart Section */
.financial-chart {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.financial-chart h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.chart-container {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.chart-summary {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.chart-summary ul {
    list-style-type: disc;
    padding-left: 20px;
}

.chart-summary li {
    margin-bottom: 10px;
}

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

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
}

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

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

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

.product-details {
    padding: 20px;
}

.product-details h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.product-details p {
    color: var(--light-text);
    margin-bottom: 20px;
    min-height: 75px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons a, 
.buttons button {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Summary Section */
.summary {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.summary h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

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

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

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

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

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

.newsletter {
    margin-top: 20px;
}

.newsletter input {
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius);
    border: none;
    margin-bottom: 10px;
}

.newsletter button {
    width: 100%;
}

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

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

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

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

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

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

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

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

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

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

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

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

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

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #FFD700;
}

.product-rating i {
    margin-right: 2px;
}

.product-rating span {
    color: var(--light-text);
    margin-left: 10px;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.quantity-selector {
    margin-right: 15px;
}

.quantity-selector label {
    font-size: 0.9rem;
    margin-right: 5px;
}

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

.product-meta {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--light-text);
}

.product-meta p {
    margin-bottom: 5px;
}

.product-tabs {
    margin-bottom: 60px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--light-text);
    position: relative;
    transition: var(--transition);
}

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

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

.tab-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tab-content p,
.tab-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.tab-content ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 20px;
}

.highlight-box {
    background-color: rgba(0, 86, 179, 0.05);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

.highlight-box p {
    margin-bottom: 0;
}

.module {
    margin-bottom: 25px;
}

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

.bonus {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff8e1;
    border-radius: var(--border-radius);
}

.bonus h3 {
    color: #FF9800;
    margin-bottom: 10px;
}

.review-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

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

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1;
}

.stars {
    color: #FFD700;
    margin: 10px 0;
}

.rating-breakdown {
    width: 60%;
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-row span {
    width: 70px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin: 0 15px;
}

.progress {
    height: 100%;
    background-color: #FFD700;
    border-radius: 4px;
}

.review {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

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

.reviewer-rating {
    color: #FFD700;
    font-size: 0.8rem;
}

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

.review-content p {
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.related-products {
    padding: 40px 0;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

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

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

.related-product h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-product .btn {
    margin-top: 15px;
}

/* Cart Page */
.cart-page {
    padding: 60px 0;
    min-height: 500px;
}

.cart-page h1 {
    text-align: center;
    margin-bottom: 40px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    text-align: center;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: l5px;
}

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

.cart-items {
    margin-bottom: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 100px 50px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-item-total {
    font-weight: bold;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 1.2rem;
}

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

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

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

.total-row.total {
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    color: var(--primary-color);
}

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

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

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

.checkout-page h1 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.checkout-form h2,
.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.full-width {
    grid-column: span 2;
}

.checkout-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-checkbox input {
    width: auto;
}

.terms-checkbox label {
    margin-bottom: 0;
}

.summary-items {
    margin-bottom: 25px;
}

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

.item-name {
    max-width: 70%;
}

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

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

/* Success Page */
.success-page {
    padding: 60px 0;
}

.success-message {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

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

.success-message h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--success-color);
}

.success-message p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: var(--light-text);
}

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

.success-info {
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.success-info h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

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

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.info-step h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.info-step p {
    color: var(--light-text);
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-story {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-list {
    list-style-type: disc;
    padding-left: 20px;
}

.values-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

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

.about-stats {
    display: flex;
    justify-content: space-around;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: -40px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

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

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

.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);
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-member p {
    color: var(--light-text);
    margin: 0 15px 15px;
}

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

.team-member .social-links {
    justify-content: center;
    margin: 20px 0;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

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

.approach-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

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

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-content p {
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
}

.testimonial-content p:before {
    top: -20px;
    left: -10px;
}

.testimonial-content p:after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

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

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

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

.partners-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

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

.partner {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

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

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

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

.cta-section .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 12px 30px;
}

.cta-section .btn:hover {
    background-color: #f0f0f0;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info {
    padding: 60px 0;
}

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

.info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.info-card p {
    margin-bottom: 10px;
}

.info-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 15px;
}

.info-card .social-links {
    justify-content: center;
    margin-bottom: 15px;
}

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

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

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

.contact-form h2,
.location-map h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form p {
    margin-bottom: 25px;
    color: var(--light-text);
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--light-bg);
}

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

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

.alternative-location {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.alternative-location h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.alternative-location p {
    color: var(--light-text);
}

.form-success {
    text-align: center;
    padding: 30px;
}

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

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--success-color);
}

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

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

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

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

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .form-map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        padding: 10px 20px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 15px;
    }
    
    .cart-item-image {
        grid-row: span 2;
    }
    
    .cart-item-details {
        grid-column: span 2;
    }
    
    .cart-item-total {
        grid-column: 2;
        grid-row: 2;
    }
    
    .cart-item-remove {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
    }
    
    .checkout-form form {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .cart-actions,
    .success-actions {
        flex-direction: column;
    }
    
    .tab-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
    }
}
