/* Main Styles for InvestWise */

/* ======= BASE STYLES ======= */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #e6f0ff;
    --secondary-color: #ffa500;
    --secondary-dark: #e69500;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --border-radius-large: 10px;
}

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

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

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

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

ul {
    list-style: none;
}

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

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

/* ======= HEADER STYLES ======= */
header {
    background-color: var(--background-white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
}

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

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

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

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-icon span {
    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;
    font-weight: bold;
}

/* ======= HERO SECTION ======= */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

/* ======= BUTTONS ======= */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-cookie {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
}

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

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

.btn-cookie.decline {
    background-color: var(--background-white);
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

/* ======= BENEFITS SECTION ======= */
.benefits {
    padding: 60px 0;
    background-color: var(--background-white);
}

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

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

.benefit-card {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

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

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

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

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

/* ======= ABOUT PRODUCTS SECTION ======= */
.about-products {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

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

.about-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.certifications {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
}

/* ======= PRODUCTS SECTION ======= */
.products {
    padding: 60px 0;
    background-color: var(--background-white);
}

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

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

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

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

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

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info h3 a {
    color: var(--text-dark);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

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

.description {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.buttons button {
    flex: 1;
    padding: 8px 5px;
    font-size: 0.9rem;
}

/* ======= COMPARISON TABLE ======= */
.comparison-table {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius-large);
    opacity: 0.9;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 20px;
}

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

.comparison-table th, 
.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(230, 240, 255, 0.5);
}

.comparison-table tr:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

/* ======= PRODUCT DETAIL PAGE ======= */
.product-detail {
    padding: 60px 0;
    background-color: var(--background-white);
}

.breadcrumb {
    margin-bottom: 30px;
}

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

.breadcrumb ul li {
    font-size: 0.9rem;
}

.breadcrumb ul li:not(:last-child):after {
    content: '/';
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb ul li span {
    color: var(--text-medium);
}

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

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

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

.rating {
    display: flex;
    align-items: center;
    color: var(--warning-color);
}

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

.product-short-description {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.quantity {
    margin-bottom: 20px;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    background-color: var(--background-light);
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 10px 0;
    font-size: 1rem;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

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

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

.product-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.product-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ======= PRODUCT TABS ======= */
.product-tabs {
    margin-bottom: 50px;
}

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

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

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

.tab-btn.active:after {
    width: 100%;
}

.tab-content {
    display: none;
}

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

.tab-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.tab-content ul, 
.tab-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.author-note, 
.instructor, 
.system-requirements, 
.data-sources {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

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

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table th, 
.specs-table td {
    padding: 12px 15px;
    text-align: left;
}

.specs-table th {
    width: 30%;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* ======= REVIEWS ======= */
.review-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

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

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.rating-breakdown {
    flex: 1;
    max-width: 400px;
    margin-left: 30px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-bar span:first-child {
    width: 60px;
    text-align: right;
    margin-right: 10px;
}

.rating-bar span:last-child {
    width: 40px;
    text-align: left;
    margin-left: 10px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: var(--warning-color);
}

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

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

.reviewer {
    font-weight: 600;
}

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

.review h4 {
    margin-bottom: 10px;
}

/* ======= RELATED PRODUCTS ======= */
.related-products {
    margin-bottom: 50px;
}

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

/* ======= CART PAGE ======= */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header .breadcrumb ul li a,
.page-header .breadcrumb ul li:not(:last-child):after {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb ul li span {
    color: white;
}

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

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

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

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

.empty-cart-message p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

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

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

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

.product-name {
    font-weight: 600;
}

.product-price, 
.product-total {
    font-weight: 600;
    color: var(--primary-color);
}

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

.remove-item:hover {
    transform: scale(1.1);
}

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

.cart-summary {
    width: 300px;
    background-color: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

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

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

.cart-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-buttons a {
    text-align: center;
}

/* ======= PRODUCT RECOMMENDATIONS ======= */
.product-recommendations {
    padding: 60px 0;
    background-color: var(--background-light);
}

.product-recommendations h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* ======= CHECKOUT PAGE ======= */
.checkout-section {
    padding-bottom: 60px;
}

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

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

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

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

.item-details {
    flex: 1;
}

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

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

.item-price {
    font-weight: 600;
    color: var(--primary-color);
}

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

.checkout-form h2 {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

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

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

.form-group.agreement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.agreement input {
    width: auto;
}

.required {
    color: var(--error-color);
    margin-left: 3px;
}

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

/* ======= SUCCESS PAGE ======= */
.success-section {
    padding: 60px 0;
    text-align: center;
}

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

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

.success-message {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.success-info {
    margin-top: 40px;
    text-align: left;
}

.success-info h2 {
    text-align: center;
    margin-bottom: 30px;
}

.success-info ul {
    list-style: none;
}

.success-info li {
    display: flex;
    margin-bottom: 30px;
}

.success-info li i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.success-info h3 {
    margin-bottom: 5px;
}

/* ======= CONTACT PAGE ======= */
.contact-section {
    padding-bottom: 60px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro h2 {
    margin-bottom: 15px;
}

.contact-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

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

.info-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.info-card p, 
.info-card address {
    color: var(--text-medium);
    font-style: normal;
    margin-bottom: 10px;
}

.social-connect {
    grid-column: 1 / -1;
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

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

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

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

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

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

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

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

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

.map-container {
    margin-bottom: 60px;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-placeholder {
    height: 400px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

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

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

/* ======= ABOUT PAGE ======= */
.about-intro {
    padding-bottom: 60px;
}

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

.about-text h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.about-text ul li {
    margin-bottom: 10px;
}

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

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

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

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

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

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

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

.value-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
}

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

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

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

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

.member-info {
    padding: 20px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

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

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

.featured-in {
    padding: 60px 0;
}

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

.logos-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ======= FOOTER ======= */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-col address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-col address a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col address a:hover {
    color: white;
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ======= COOKIE NOTICE ======= */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999;
    display: none;
}

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

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

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

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

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 992px) {
    .about-content,
    .product-content,
    .contact-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .cart-actions {
        justify-content: center;
    }
    
    .cart-summary {
        width: 100%;
        max-width: 400px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkout-actions a {
        text-align: center;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-table th:nth-child(3),
    .cart-table td:nth-child(3) {
        display: none;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .stats,
    .product-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }
    
    .cart-table th:first-child,
    .cart-table td:first-child {
        width: 70%;
    }
}
