:root {
  --vimi-color: #27ae60; /* VIMI green main color */
  --vimi-light: #2ecc71; /* Lighter green */
  --vimi-dark: #219653; /* Darker green for hover states */
  --vimi-green-rgb: 39, 174, 96; /* RGB values for opacity variations */
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --border-color: #ddd;
  --success-color: #27ae60; /* Using VIMI green for success */
  --error-color: #dc3545;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --vimi-gradient: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  --vimi-logo-green: #117c68; /* Color from the SVG logo */
  --vimi-logo-yellow: #e7c910; /* Color from the SVG logo */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 800px; /* Increased for about page content */
}

/* About Card Styles */
.about-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-header {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--vimi-gradient);
  color: white;
}

.about-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* VIMI Logo Styles */
.vimi-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px; /* Increased height for the logo */
  background: white;
  border-radius: 50%; /* Make it circular */
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vimi-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vimi-logo:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 60%
  );
  border-radius: 50%; /* Make it circular to match the container */
  z-index: 0;
  opacity: 0.6;
}

.about-body {
  padding: 40px 30px;
}

.about-section {
  margin-bottom: 30px;
  position: relative;
  transition: transform 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
}

.about-section h2 {
  font-size: 1.5rem;
  color: var(--vimi-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section h2 i {
  color: var(--vimi-color);
  font-size: 1.4rem;
}

.about-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.shop-button,
.contact-button {
  flex: 1;
  padding: 14px;
  background-color: var(--vimi-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.shop-button:hover,
.contact-button:hover {
  background-color: var(--vimi-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(var(--vimi-green-rgb), 0.3);
}

.shop-button:active,
.contact-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(var(--vimi-green-rgb), 0.2);
}

.shop-button {
  background: var(--vimi-gradient);
}

.contact-button {
  background: white;
  color: var(--vimi-color);
  border: 2px solid var(--vimi-color);
}

.contact-button:hover {
  background: rgba(var(--vimi-green-rgb), 0.1);
  color: var(--vimi-dark);
}

.about-footer {
  padding: 20px 30px;
  background-color: var(--secondary-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
}

.quality-badge,
.delivery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 5px 0;
}

.quality-badge i,
.delivery-badge i {
  color: var(--vimi-color);
}

.powered-by {
  color: #777;
  font-size: 0.9rem;
  margin: 5px 0;
  font-weight: 500;
}

.policy-links {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  color: #999;
  font-size: 0.85rem;
}

.policy-links a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 5px;
}

.policy-links a:hover {
  color: var(--vimi-color);
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
  }

  .about-header {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .about-body {
    padding: 30px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .about-footer {
    flex-direction: column;
    text-align: center;
  }

  .quality-badge,
  .delivery-badge,
  .powered-by {
    margin: 5px auto;
  }

  .vimi-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .location-info,
  .phone-info {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 1.7rem;
  }

  .about-section h2 {
    font-size: 1.3rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-body {
    padding: 25px 15px;
  }

  .about-footer {
    padding: 15px;
  }

  .vimi-logo {
    width: 50px;
    height: 50px;
  }
}

/* Keep the privacy modal styles */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.privacy-modal.show {
  display: flex;
  opacity: 1;
}

.privacy-modal-content {
  background-color: white;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.privacy-modal.show .privacy-modal-content {
  transform: translateY(0);
}

.privacy-modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-modal-header h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin: 0;
}

.privacy-modal-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.privacy-modal-body a {
  color: var(--vimi-color);
  text-decoration: none;
}

.privacy-modal-body a:hover {
  text-decoration: underline;
}

.privacy-modal-footer {
  padding: 15px 20px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.accept-button {
  padding: 10px 25px;
  background-color: var(--vimi-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accept-button:hover {
  background-color: var(--vimi-dark);
}

.more-info-button {
  padding: 10px 25px;
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-info-button:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 480px) {
  .privacy-modal-content {
    width: 95%;
  }

  .privacy-modal-footer {
    flex-direction: column;
  }

  .accept-button,
  .more-info-button {
    width: 100%;
  }

  .privacy-modal-body {
    font-size: 14px;
  }
}

.contact-section {
  background: rgba(var(--vimi-green-rgb), 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--vimi-color);
  margin-bottom: 35px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.location-info,
.phone-info {
  flex: 1;
  min-width: 250px;
}

.address {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.map-link {
  color: var(--vimi-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.map-link:hover {
  color: var(--vimi-dark);
  text-decoration: underline;
}

.map-link i {
  font-size: 0.8em;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone i {
  color: var(--vimi-color);
}

.phone a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.phone a:hover {
  color: var(--vimi-color);
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex: 2;
}

.app-store-button,
.play-store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--vimi-gradient);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.app-store-button i,
.play-store-button i {
  font-size: 24px;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-store-text .small-text {
  font-size: 0.7rem;
  opacity: 0.9;
}

.app-store-text .large-text {
  font-size: 1.1rem;
  font-weight: 600;
}

.app-store-button:hover,
.play-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(var(--vimi-green-rgb), 0.3);
}

@media (max-width: 768px) {
  .app-buttons {
    flex-direction: column;
    width: 100%;
  }

  .app-store-button,
  .play-store-button {
    width: 100%;
    justify-content: center;
  }
}

.expansion-section {
  background: linear-gradient(
    135deg,
    rgba(var(--vimi-green-rgb), 0.1) 0%,
    rgba(var(--vimi-green-rgb), 0.05) 100%
  );
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(var(--vimi-green-rgb), 0.1);
}

.gcc-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.gcc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  background-color: var(--vimi-color);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gcc-tag i {
  font-size: 0.8rem;
}

.gcc-tag.coming-soon {
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.gcc-tag.coming-soon i {
  color: var(--vimi-color);
}

@media (max-width: 768px) {
  .gcc-countries {
    justify-content: center;
  }

  .gcc-tag {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .expansion-section {
    padding: 20px;
  }

  .gcc-countries {
    gap: 8px;
  }

  .gcc-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
