:root {
    --primary-color: #0077b6;
    --secondary-color: #00b4d8;
    --background-color: #f0f8ff;
    --text-color: #333;
    --white-color: #ffffff;
    --card-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

header {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

header nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.hero {
    background-image: url('hero-background.png');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

section {
    padding: 60px 0;
}

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

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

.product-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.product-card p {
    padding: 0 20px;
    font-size: 0.95rem;
}

.payment-note {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 15px;
    font-style: italic;
}

.services {
    background-color: #e7f5ff;
}

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

.service-item {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.service-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.payment-method img {
    max-width: 120px;
    margin-top: 15px;
}

.contact {
    text-align: center;
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 10px 0;
}

.map-placeholder {
    background-color: #e0e0e0;
    border-radius: 10px;
    padding: 80px 20px;
    margin: 0 auto;
    max-width: 800px;
}

footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

