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

body {
  color: #2c2c2c;
  background-color: #faf7ed;
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: #faf7ed;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: #2c3e50;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #3498db;
}

/* Content Styles */
.content {
  max-width: 1200px;
  margin: 100px auto 40px;
  padding: 2rem;
  min-height: calc(100vh - 180px);
}

.content a {
  color: #3498db;
  text-decoration: none;
  font-weight: 900;
}

h1 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

h2 {
  color: #34495e;
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.section {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.section ul {
  margin-left: 2rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
  background-color: #faf7ed;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  padding: 0 1rem;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.footer-links a {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
}

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

/* Button Styles */
.download-btn {
  font-weight: 900;
  background-color: #2c2c2c;
  color: white;
  border: 10px solid #2c2c2c;
  padding: 8px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #2980b9;
  border: 10px solid #2980b9;
}

nav ul li button {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form styles */
.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 1.5rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #f9f9f9;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
  outline: none;
  background-color: #fff;
}

.submit-btn {
  background-color: #4605e5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
  display: block;
}

.submit-btn:hover {
  background-color: #330b9a;
}

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

.form-message {
  padding: 0.75rem;
  border-radius: 6px;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background-color: #d1f2eb;
  color: #16a085;
  border: 1px solid #a3e4d7;
  display: block;
}

.form-message.error {
  background-color: #fadbd8;
  color: #c0392b;
  border: 1px solid #f5b7b1;
  display: block;
}

/* Contact Section Styles */
.contact-section {
  background-color: #f9f6f0;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  color: #2c3e50;
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4605E5, #2ecc71);
  border-radius: 3px;
}

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

.contact-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  padding: 0;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon-container {
  width: 80px;
  background: linear-gradient(135deg, #4605E5, #2980b9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-container i {
  font-size: 1.8rem;
}

.contact-content {
  padding: 1.5rem;
  flex: 1;
}

.contact-content h3 {
  font-size: 1.3rem;
  color: #4605E5;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.contact-info {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-info a {
  color: #4605E5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #330b9a;
  text-decoration: underline;
}

.location-tag {
  display: inline-block;
  background-color: #f1f1f1;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  color: #555;
}

.phone-number {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.working-hours {
  color: #7f8c8d;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.facebook-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.follow-text {
  margin-top: 1rem;
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: row;
  }

  .contact-icon-container {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
  }

  .contact-icon-container {
    width: 100%;
    height: 60px;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }

  header {
    flex-direction: column;
    padding: 1rem;
  }

  nav ul {
    margin-top: 1rem;
  }

  .content {
    margin-top: 140px;
    padding: 1rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }
}
