/* ===================== */
/* General Styles */
/* ===================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8f8f8;
}

.container {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
    flex: 1; /* allow main content to expand */
}

/* ===================== */
/* Header */
/* ===================== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #00853E;
    color: white;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

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

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

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

.company-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.header-center .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

.header-right select {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: none;
    font-weight: bold;
}

/* ===================== */
/* Sections */
/* ===================== */
.about-section, .privacy-section, .imprint-section {
    padding: 6rem 1rem;
    margin-top: 5rem; /* space below fixed header */
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #00853E;
}

.section-sub {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===================== */
/* Services Grid */
/* ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
}

.service-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00853E;
}

.service-card .service-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* ===================== */
/* Product Section */
/* ===================== */

.products-summary {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 1.5rem auto;
    color: #444;
}

.products-summary-btn {
    text-align: center;
    margin-top: 1.5rem;
}

.products-summary-btn .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #00853E;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.products-summary-btn .btn:hover {
    background-color: #006F2B;
}

/* ===================== */
/* Contact Section */
/* ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3, .contact-item h4 {
    margin: 0 0 0.25rem 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.contact-form {
    margin-top: 3rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #00853E;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #006F2B;
}

/* ===================== */
/* Footer */
/* ===================== */
.footer {
    background-color: #00853E;
    color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
    margin-top: auto; /* push footer down */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-copy {
    font-size: 12px;
    color: #ddd;
}

/* ===================== */
/* Imprint & Privacy Cards */
/* ===================== */
.imprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.imprint-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    color: #444;
    line-height: 1.8;
    max-width: 600px;
    margin: 2rem auto;
}

.imprint-card h3 {
    font-size: 1.5rem;
    color: #00853E;
    margin-bottom: 1rem;
}

.imprint-card p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* ===================== */
/* Utility */
a {
    color: #00853E;
}

a:hover {
    color: #FFD700;
}

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

/* =========================== */
/* Producst.html css file part */
/* =========================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.product-image {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #00853E;
  margin-bottom: 0.5rem;
}

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

.product-card .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background-color: #00853E;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s;
}

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