/* ====================================
   OVER ONS PAGE STYLES
   ==================================== */

/* Hero Section */
.about-hero-section {
  background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
  color: #ffffff;
  padding: 100px 20px 80px;
  text-align: center;
  width: 100%;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 22px;
  margin: 0;
  opacity: 0.95;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content Section */
.about-main-section {
  padding: 80px 20px;
  width: 100%;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* About Block */
.about-block {
  margin-bottom: 80px;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-block-reverse .about-block-content {
  direction: rtl;
}

.about-block-reverse .about-block-content > * {
  direction: ltr;
}

.about-block-text {
  padding: 20px 0;
}

.about-block-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0 0 25px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.about-block-description {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-block-description:last-of-type {
  margin-bottom: 0;
}

.about-block-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #0066CC;
  margin: 25px 0 0 0;
  font-style: italic;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-block-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/3;
}

.about-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Save Section */
.about-save-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin: 80px 0;
  border-radius: 16px;
  text-align: center;
}

.about-save-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-save-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin: 0 0 25px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-save-description {
  font-size: 20px;
  font-weight: 600;
  color: #0066CC;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-save-text {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-save-text:last-of-type {
  margin-bottom: 35px;
}

.about-save-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: #0066CC;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
  border: 2px solid #0066CC;
}

.about-save-button:hover {
  background-color: #004499;
  border-color: #004499;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-feature-card {
  background-color: #f8f9fa;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.about-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0066CC;
  border-radius: 50%;
  color: #ffffff;
}

.about-feature-icon svg {
  width: 32px;
  height: 32px;
}

.about-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .about-hero-title {
    font-size: 48px;
  }
  
  .about-hero-subtitle {
    font-size: 20px;
  }
  
  .about-block-content {
    gap: 50px;
  }
  
  .about-block-title {
    font-size: 32px;
  }
  
  .about-save-title {
    font-size: 36px;
  }
  
  .about-features-grid {
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  .about-hero-section {
    padding: 80px 15px 60px;
  }
  
  .about-hero-title {
    font-size: 40px;
  }
  
  .about-hero-subtitle {
    font-size: 18px;
  }
  
  .about-main-section {
    padding: 60px 15px;
  }
  
  .about-block {
    margin-bottom: 60px;
  }
  
  .about-block-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-block-reverse .about-block-content {
    direction: ltr;
  }
  
  .about-block-image {
    order: -1;
  }
  
  .about-block-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .about-block-description {
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .about-block-highlight {
    font-size: 17px;
    margin-top: 20px;
  }
  
  .about-save-section {
    padding: 60px 15px;
    margin: 60px 0;
  }
  
  .about-save-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .about-save-description {
    font-size: 18px;
    margin-bottom: 18px;
  }
  
  .about-save-text {
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .about-save-button {
    padding: 14px 35px;
    font-size: 16px;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }
  
  .about-feature-card {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 480px) {
  .about-hero-section {
    padding: 60px 10px 50px;
  }
  
  .about-hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .about-hero-subtitle {
    font-size: 16px;
  }
  
  .about-main-section {
    padding: 50px 10px;
  }
  
  .about-block {
    margin-bottom: 50px;
  }
  
  .about-block-content {
    gap: 30px;
  }
  
  .about-block-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
  
  .about-block-description {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .about-block-highlight {
    font-size: 16px;
    margin-top: 18px;
  }
  
  .about-save-section {
    padding: 50px 10px;
    margin: 50px 0;
  }
  
  .about-save-title {
    font-size: 28px;
    margin-bottom: 18px;
  }
  
  .about-save-description {
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .about-save-text {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .about-save-text:last-of-type {
    margin-bottom: 30px;
  }
  
  .about-save-button {
    padding: 12px 30px;
    font-size: 15px;
  }
  
  .about-features-grid {
    gap: 20px;
    margin-top: 30px;
  }
  
  .about-feature-card {
    padding: 25px 20px;
  }
  
  .about-feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
  
  .about-feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .about-feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .about-feature-text {
    font-size: 14px;
  }
}
