/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF6347;
    text-decoration: none;
}

header nav a {
    text-decoration: none;
    color: #555;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover, header nav a.active {
    color: #FF6347;
}

header .cta-button {
    background-color: #FF6347;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

header .cta-button:hover {
    background-color: #e55a40;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6347;
    text-decoration: underline;
}

div.footer-links a:hover {
    color: #FF6347;
    text-decoration: underline;
}


div.container .footer-links {
    margin-bottom: 1rem;
}

div.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer p {
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.hero .btn {
    background-color: #FF6347;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.hero .btn:hover {
    background-color: #e55a40;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: #333;
}

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

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.product-card .icon {
    font-size: 3rem;
    color: #FF6347;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #FF6347;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.product-card .btn {
    background-color: #FF6347;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-card .btn:hover {
    background-color: #e55a40;
}

/* Product Page Specifics */
.product-hero {
    background: #FF6347;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

.features-section {
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #FF6347;
}

.feature-card .icon {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-card .icon svg {
    width: 24px;
    height: 24px;
    color: #FF6347;
    margin-right: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Support Page */
.support-hero {
    background: linear-gradient(135deg, #FF6347 0%, #e55a40 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.support-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.contact-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6347, #e55a40);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 99, 71, 0.3);
}

.contact-card .icon svg {
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.contact-card a {
    color: #FF6347;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #e55a40;
    text-decoration: underline;
}

.whatsapp-card .icon {
    background: linear-gradient(135deg, #25D366, #20b858);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.location-card .icon {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav {
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .support-hero h1 {
        font-size: 2.2rem;
    }

    .support-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        margin: 2rem 0;
    }

    .contact-card {
        padding: 2rem;
    }
} 