/* style/index-security-guarantee.css */

/* Variables */
:root {
  --page-primary-color: #1A2E44; /* Dark Blue */
  --page-accent-color: #FFD700;  /* Gold */
  --page-text-light: #F0F2F5;   /* Light Gray for text on dark backgrounds */
  --page-text-dark: #333333;    /* Dark Gray for text on light backgrounds */
  --page-background-light: #FFFFFF; /* White */
  --page-background-dark: #101F30; /* Slightly darker than primary for contrast */
}

.page-index-security-guarantee {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-dark);
  line-height: 1.6;
}

.page-index-security-guarantee__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-security-guarantee__hero {
  background: linear-gradient(135deg, var(--page-primary-color), #2A4C6B);
  color: var(--page-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-security-guarantee__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,security_pattern,digital_lines]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-security-guarantee__hero .page-index-security-guarantee__container {
  position: relative;
  z-index: 1;
}

.page-index-security-guarantee__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-index-security-guarantee__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-index-security-guarantee__button {
  display: inline-block;
  background-color: var(--page-accent-color);
  color: var(--page-primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-security-guarantee__button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

/* Sections */
.page-index-security-guarantee__section {
  padding: 80px 0;
  background-color: var(--page-background-light);
}

.page-index-security-guarantee__section:nth-of-type(even) {
  background-color: #F8F8F8; /* Slightly off-white for visual break */
}

.page-index-security-guarantee__section-title {
  font-size: 2.5em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-security-guarantee__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-accent-color);
  border-radius: 2px;
}

.page-index-security-guarantee__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-index-security-guarantee__content-block--reverse {
  flex-direction: row-reverse;
}

.page-index-security-guarantee__text-content {
  flex: 1;
  font-size: 1.1em;
  color: var(--page-text-dark);
}

.page-index-security-guarantee__text-content p {
  margin-bottom: 20px;
}

.page-index-security-guarantee__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-security-guarantee__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Advanced Tech Grid */
.page-index-security-guarantee__advanced-tech {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  padding: 80px 0;
}

.page-index-security-guarantee__advanced-tech .page-index-security-guarantee__section-title {
  color: var(--page-accent-color);
}

.page-index-security-guarantee__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-index-security-guarantee__grid-item {
  background-color: var(--page-background-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-security-guarantee__grid-item:hover {
  transform: translateY(-5px);
}

.page-index-security-guarantee__grid-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.page-index-security-guarantee__grid-title {
  font-size: 1.8em;
  color: var(--page-accent-color);
  margin-bottom: 15px;
}

.page-index-security-guarantee__grid-item p {
  font-size: 1em;
  opacity: 0.8;
}

/* CTA Section */
.page-index-security-guarantee__cta {
  background: linear-gradient(135deg, #2A4C6B, var(--page-primary-color));
  color: var(--page-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-index-security-guarantee__cta-title {
  font-size: 2.8em;
  color: var(--page-accent-color);
  margin-bottom: 20px;
}

.page-index-security-guarantee__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-index-security-guarantee__button--cta {
  font-size: 1.3em;
  padding: 18px 40px;
  background-color: var(--page-accent-color);
  color: var(--page-primary-color);
}

.page-index-security-guarantee__button--cta:hover {
  background-color: #e6c200;
  transform: translateY(-5px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-security-guarantee__title {
    font-size: 2.8em;
  }
  .page-index-security-guarantee__section-title {
    font-size: 2em;
  }
  .page-index-security-guarantee__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-index-security-guarantee__content-block--reverse {
    flex-direction: column;
  }
  .page-index-security-guarantee__image-wrapper {
    margin-top: 30px;
  }
  .page-index-security-guarantee__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantee__hero {
    padding: 80px 0;
  }
  .page-index-security-guarantee__title {
    font-size: 2.2em;
  }
  .page-index-security-guarantee__subtitle {
    font-size: 1.1em;
  }
  .page-index-security-guarantee__section {
    padding: 60px 0;
  }
  .page-index-security-guarantee__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-index-security-guarantee__text-content {
    font-size: 1em;
  }
  .page-index-security-guarantee__grid {
    grid-template-columns: 1fr;
  }
  .page-index-security-guarantee__cta-title {
    font-size: 1.8em;
  }
  .page-index-security-guarantee__cta-text {
    font-size: 1em;
  }
  .page-index-security-guarantee__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-security-guarantee__button--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-security-guarantee__title {
    font-size: 1.8em;
  }
  .page-index-security-guarantee__subtitle {
    font-size: 0.9em;
  }
  .page-index-security-guarantee__section-title {
    font-size: 1.5em;
  }
  .page-index-security-guarantee__cta-title {
    font-size: 1.5em;
  }
}