/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Questrial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* General Section Styling */
.content-section {
  padding: 60px 10%;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #222;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4CAF50;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .hamburger {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background: url('images/products.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero-content {
  width: 45%;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #3a8b41;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 5%;
    background-position: calc(75%) center;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
  }
}

/* About Section */
.about-section {
  background-color: #f4f4f4;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4CAF50;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.about-subsection {
  margin-bottom: 30px;
}

.subsection-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.services-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 10px;
}

.services-list li strong {
  color: #4CAF50;
}

/* Technology Section */
#technology {
  text-align: center;
}

#technology h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4CAF50;
}

.tech-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 40px;
}

.tech-image {
  flex: 1;
  max-width: 50%;
}

.tech-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tech-description {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.tech-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.product-manuals {
  list-style: none;
  padding: 0;
}

.product-manuals li {
  margin-bottom: 10px;
}

.product-manuals a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.product-manuals a:hover {
  color: #3a8b41;
}

@media (max-width: 768px) {
  .tech-content {
    flex-direction: column;
    text-align: center;
  }

  .tech-image,
  .tech-description {
    max-width: 100%;
    text-align: center;
  }
}

/* Charging Experience Section */
#experience {
  background-color: #f9f9f9;
  padding: 60px 10%;
  text-align: center;
}

#experience h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4CAF50;
}

.experience-gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.image-frame {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#experience p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

#experience ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

#experience ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.8;
}

#experience .cta-button {
  margin-top: 20px;
}

/* Contact Section */
#contact {
  padding: 60px 10%;
  background-color: #fff;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4CAF50;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4CAF50;
  outline: none;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.contact-form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #3a8b41;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 10%;
  background-color: #222;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3a8b41;
}

/* Policy Pages */
.policy-section {
  padding: 60px 10%;
  background-color: #f9f9f9;
  color: #333;
}

.policy-section h1 {
  font-size: 2.5rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

.policy-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.policy-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.policy-section ul {
  margin: 20px 0;
  padding-left: 20px;
}

.policy-section ul li {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-section a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.policy-section a:hover {
  color: #3a8b41;
}
