:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;

    /* RGB versions for rgba usage */
    --primary-color-rgb: 255, 140, 26;
    --secondary-color-rgb: 255, 165, 58;
    --card-bg-rgb: 23, 25, 31;
}

.page-g {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color);
    background-color: var(--background-color);
}

.page-g__section {
    padding: 60px 0;
    text-align: center;
}

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

.page-g__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

.page-g__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

/* HERO Section */
.page-g__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    overflow: hidden;
}

.page-g__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-g__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-g__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-g__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.page-g__hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.page-g__hero-description {
    font-size: 20px;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.page-g__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%; /* For responsive buttons */
    box-sizing: border-box; /* For responsive buttons */
    white-space: normal; /* For responsive buttons */
    word-wrap: break-word; /* For responsive buttons */
}

.page-g__cta-button:hover {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-orange-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Cards Grid */
.page-g__cards-grid, .page-g__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-g__card, .page-g__promo-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.page-g__card:hover, .page-g__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-g__card img, .page-g__promo-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-g__card-title, .page-g__promo-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-g__card-text, .page-g__promo-text {
    font-size: 16px;
    color: var(--text-main-color);
    line-height: 1.7;
}

/* Numbered List (Guide) */
.page-g__numbered-list {
    list-style: none;
    counter-reset: guide-step;
    text-align: left;
    padding: 0;
    margin-top: 40px;
}

.page-g__numbered-list li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.page-g__numbered-list li::before {
    counter-increment: guide-step;
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-g__list-title {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-g__numbered-list li p {
    font-size: 17px;
    color: var(--text-main-color);
}

/* Bullet List (Strategy) */
.page-g__bullet-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin-top: 40px;
}

.page-g__bullet-list li {
    position: relative;
    margin-bottom: 25px;
    padding-left: 30px;
}

.page-g__bullet-list li::before {
    content: '•'; /* Custom bullet point */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
}

.page-g__bullet-list li p {
    font-size: 17px;
    color: var(--text-main-color);
}

/* Feature List (Security) */
.page-g__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.page-g__feature-list li {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-g__feature-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-g__feature-list li img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min width for content images */
    min-height: 200px; /* Enforce min height for content images */
}

.page-g__feature-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

/* FAQ Section */
.page-g__faq-list {
    margin-top: 40px;
    text-align: left;
}

details.page-g__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
details.page-g__faq-item summary.page-g__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--secondary-color);
  font-weight: bold;
}
details.page-g__faq-item summary.page-g__faq-question::-webkit-details-marker {
  display: none;
}
details.page-g__faq-item summary.page-g__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.page-g__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
.page-g__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-g__faq-item .page-g__faq-answer {
  padding: 0 25px 25px;
  background: rgba(var(--card-bg-rgb), 0.8);
  border-radius: 0 0 12px 12px;
  color: var(--text-main-color);
  font-size: 16px;
}

.page-g__faq-answer p {
    margin-bottom: 15px;
}

.page-g__faq-link-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-g__faq-link-button:hover {
    background: var(--secondary-color);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-g__hero-content h1 {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }
    .page-g__hero-description {
        font-size: 18px;
    }
    .page-g__section-title {
        font-size: 30px;
    }
    .page-g__cards-grid, .page-g__promo-grid, .page-g__feature-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-g__card, .page-g__promo-card, .page-g__feature-list li {
        padding: 25px;
    }
    .page-g__card img, .page-g__promo-card img {
        height: 200px;
    }
    .page-g__cta-button {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .page-g__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-g__hero-content h1 {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 15px;
    }
    .page-g__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-g__cta-button {
        font-size: 16px;
        padding: 12px 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-g__section {
        padding: 40px 0;
    }
    .page-g__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-g__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-g__text-block {
        font-size: 16px;
    }
    .page-g__cards-grid, .page-g__promo-grid, .page-g__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-g__card, .page-g__promo-card, .page-g__feature-list li {
        padding: 20px;
    }
    .page-g__card img, .page-g__promo-card img {
        height: auto;
        min-height: 200px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-g__feature-list li img {
        
        
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-g__card-title, .page-g__promo-title, .page-g__list-title, .page-g__feature-title {
        font-size: 20px;
    }
    .page-g__card-text, .page-g__promo-text, .page-g__numbered-list li p, .page-g__bullet-list li p {
        font-size: 15px;
    }
    details.page-g__faq-item summary.page-g__faq-question {
      padding: 15px 20px;
    }
    .page-g__faq-qtext {
      font-size: 16px;
    }
    .page-g__faq-toggle {
      font-size: 24px;
      width: 25px;
    }
    details.page-g__faq-item .page-g__faq-answer {
      padding: 0 20px 20px;
    }
    .page-g__faq-answer p {
        font-size: 15px;
    }
    .page-g__faq-link-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Ensure all images within .page-g are responsive and meet minimum size */
.page-g img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Global min width for images */
    min-height: 200px; /* Global min height for images */
    object-fit: cover; /* Default object-fit */
}

/* Mobile image and button responsiveness - override with !important */
@media (max-width: 768px) {
    .page-g img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-g__section,
    .page-g__card,
    .page-g__container,
    .page-g__promo-card,
    .page-g__feature-list li {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-g__cta-button,
    .page-g__faq-link-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-g__cta-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 15px; /* Add padding to wrapper for alignment */
    }
}