:root {
    --brand-blue: #1a2a5e;
    --brand-green: #7ec143;
    --brand-orange: #f7941d;
    --brand-light-blue: #f0f7ff;
    --text-color: #333;
    --white: #ffffff;
    --rounded: 24px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Varela Round', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: var(--brand-blue);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.logo span.active {
    color: var(--brand-blue);
}

.logo span.i {
    color: var(--brand-orange);
}

.logo span.chairs {
    color: var(--brand-blue);
}

/* Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brand-light-blue) 0%, #fff 100%);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 32px;
    border-radius: var(--rounded);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-amazon {
    background-color: var(--brand-green);
    color: var(--white);
}

.btn-contact {
    background-color: var(--brand-blue);
    color: var(--white);
}

.hero-image img {
    width: 100%;
    border-radius: var(--rounded);
    box-shadow: var(--shadow);
}

/* Features */
.features {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: var(--brand-light-blue);
    border-radius: var(--rounded);
    transition: background 0.3s ease;
}

.feature-card:hover {
    background: #e6f2ff;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* Footer */
/* Footer Enhancements */
footer {
    background-color: var(--brand-green);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-contact {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #2a3a6e;
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Legal Pages Styles */
.policy-container {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-container h1 {
    color: var(--brand-blue);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.policy-container h2 {
    color: var(--brand-blue);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}