/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f3ef 100%);
  direction: rtl;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c4975a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #a67c47;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #c4975a;
  margin: 3px 0;
  transition: 0.3s;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #c4975a;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #c4975a;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8dcc8 0%, #f5ead6 50%, #e0d4bb 100%);
  padding: 6rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #5a5a5a;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #c4975a;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a67c47;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 151, 90, 0.3);
}

/* Section Styles */
.intro,
.testimonials,
.info-section,
.content-section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: #3a3a3a;
  text-align: center;
  margin-bottom: 3rem;
}

.section-text {
  font-size: 1.1rem;
  color: #5a5a5a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.4rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.feature-text {
  color: #6a6a6a;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f9f8f6 0%, #ffffff 100%);
}

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

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-right: 4px solid #c4975a;
}

.testimonial-text {
  font-style: italic;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #3a3a3a;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: #8a8a8a;
  font-size: 0.9rem;
}

/* Info Section */
.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-text h3 {
  font-size: 1.8rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.info-text p {
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.info-list {
  list-style: none;
  padding-right: 0;
}

.info-list li {
  color: #5a5a5a;
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
}

.info-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #c4975a;
  font-weight: bold;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #e8dcc8 0%, #f5ead6 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.8rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #5a5a5a;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  font-size: 2rem;
  color: #3a3a3a;
  margin: 2rem 0 1rem;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p {
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-list {
  list-style: none;
  padding-right: 0;
  margin: 1.5rem 0;
}

.content-list li {
  color: #5a5a5a;
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.content-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: #c4975a;
  font-weight: bold;
  font-size: 1.2rem;
}

.image-block {
  margin: 2rem 0;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.image-caption {
  text-align: center;
  color: #8a8a8a;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Missions Grid */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mission-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h2 {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.mission-card p {
  color: #5a5a5a;
  line-height: 1.7;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.advantage-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.advantage-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #c4975a;
  margin-bottom: 1rem;
}

.advantage-card h2 {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: #5a5a5a;
  line-height: 1.7;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: #f9f8f6;
  padding: 1.5rem;
  border-radius: 8px;
}

.feature-item h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #6a6a6a;
  line-height: 1.6;
}

/* Networks Grid */
.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.network-card {
  background: #f9f8f6;
  padding: 1.5rem;
  border-radius: 8px;
  border-right: 3px solid #c4975a;
}

.network-card h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
}

.network-card p {
  color: #6a6a6a;
  line-height: 1.6;
}

/* Note Box */
.note-box {
  background: #fff9f0;
  border: 1px solid #f0d9b3;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.note-box p {
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  font-size: 1.2rem;
  color: #3a3a3a;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f9f8f6 0%, #ffffff 100%);
  margin: 0;
  cursor: pointer;
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.faq-answer p {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style: none;
  padding-right: 0;
}

.faq-answer ul li {
  color: #5a5a5a;
  padding: 0.3rem 0;
  padding-right: 1.5rem;
  position: relative;
}

.faq-answer ul li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: #c4975a;
  font-weight: bold;
}

.faq-answer a {
  color: #c4975a;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c4975a;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: #c4975a;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #d0d0d0;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #c4975a;
}

.footer-bottom {
  border-top: 1px solid #4a4a4a;
  padding-top: 1rem;
  text-align: center;
  color: #a0a0a0;
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
}

#cookieBanner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  line-height: 1.6;
}

.cookie-text a {
  color: #c4975a;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

#acceptCookies {
  padding: 0.8rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .info-content {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  #acceptCookies {
    width: 100%;
  }

  .features-grid,
  .testimonials-grid,
  .missions-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .content-wrapper {
    padding: 1.5rem;
  }

  .page-title {
    font-size: 2rem;
  }
}
