:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --background-color: #ecf0f1;
    --text-color: #34495e;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header .container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 20px;
}

.header h1 {
    font-family: var(--font-header);
    color: var(--primary-color);
    margin: 0;
}

/* Hero Section */
.hero {
    background-image: url('hero-background.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    background-color: rgba(44, 62, 80, 0.7);
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
}

.hero h2 {
    font-family: var(--font-header);
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    font-weight: 300;
}

/* General Section Styling */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-child(odd) {
    background-color: var(--light-gray);
}

section h2 {
    font-family: var(--font-header);
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #7f8c8d;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-family: var(--font-header);
    color: var(--primary-color);
    padding: 20px 20px 10px 20px;
    margin: 0;
}

.product-card p {
    padding: 0 20px 20px 20px;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.service-item img {
    height: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-family: var(--font-header);
    color: var(--primary-color);
}

/* Payment Section */
.payment-logos {
    max-height: 50px;
    margin: 20px 0;
}

/* Contact Section */
.contact {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
}

.contact p {
    font-size: 1.1em;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--light-gray);
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2em;
    }
    .header .container {
        flex-direction: column;
    }
    .logo {
        margin: 0 0 10px 0;
    }
}

