a:hover,
  a:focus {
    color: initial;
    text-decoration: none;
  }
  
  /* Hero Section */
  .hero-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/imageserver/Reusable/title242020/gaf-hdr-cali-cool.webp);
      background-size: cover;
      background-position: center;
      padding: 100px 5%;
      color: #fff;
      position: relative;
  }

.hero-content {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background: rgba(255,255,255,.6);
	-webkit-box-shadow: 0 20px 75px 0 rgba(0,0,0,.12);
	box-shadow: 0 20px 75px #0000001f;
	padding-block: 40px;
	padding-inline: 40px;
	max-width: fit-content;
	color: #111;
}

.hero-title {
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	max-width: 20ch;
}

  .hero-badges {
      display: flex;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
  }

  .badge {
      background-color: rgba(255, 255, 255, 0.9);
      padding: 30px 40px;
      border-radius: 10px;
      text-align: center;
      min-width: 200px;
  }


  /* Info Section */
  .info-section {
      background-color: #fff;
      padding: 80px 5%;
  }

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

  .info-section h2 {
      font-weight: 700;
      margin-bottom: 30px;
      color: #333;
  }

  .info-section p {
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
  }

  /* Benefits Section */
  .benefits-section {
      background-color: #f9f9f9;
      padding: 80px 5%;
  }

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

  .benefits-section h2 {
      font-weight: 700;
      margin-bottom: 60px;
      text-align: center;
      color: #333;
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
  }

  .benefit-card {
      text-align: center;
      padding: 30px 20px;
  }

  .benefit-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
  }

  .benefit-icon svg {
      width: 100%;
      height: 100%;
      fill: #e74c3c;
  }

  .benefit-card h3 {
      font-weight: 700;
      margin-bottom: 15px;
      color: #333;
  }

  .benefit-card p {
      line-height: 1.7;
      color: #666;
  }

  /* Shingles Section */
  .shingles-section {
      background-color: #fff;
      padding: 80px 5%;
  }

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

  .accordion-item {
      border: 2px solid #ddd;
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
  }

  .accordion-header {
      padding: 25px 30px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fff;
      transition: background-color 0.3s ease;
  }

  .accordion-header:hover {
      background-color: #f5f5f5;
  }

  .accordion-header.active {
      background-color: #f0f0f0;
      border-bottom: 2px solid #ddd;
  }

  .accordion-title {
      font-weight: 700;
      color: #333;
  }

  .accordion-toggle {
      color: #e74c3c;
      font-weight: 700;
      transition: transform 0.3s ease;
  }

  .accordion-header.active .accordion-toggle {
      transform: rotate(180deg);
  }

  .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 30px;
  }

  .accordion-content.active {
      max-height: 3500px;
      padding: 30px;
  }

  .accordion-description {
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
  }

  .info-button {
      display: inline-block;
      padding: 12px 30px;
      background-color: #e74c3c;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      border-radius: 25px;
      margin-block: 30px;
      transition: all 0.3s ease;
  }

  .info-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
  }

  .shingles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 25px;
      margin-top: 20px;
  }

  .shingle-card {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
  }

  .shingle-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .shingle-image {
      width: 100%;
      max-width: 350px;
      object-fit: cover;
      position: relative;
  }

  .sri-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: rgba(255, 255, 255, 0.95);
      padding: 8px 12px;
      font-weight: 700;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .shingle-name {
      padding: 20px 15px;
      font-weight: 600;
      color: #333;
      text-align: center;
  }

  /* FAQ Section */
  .faq-section {
      background-color: #f9f9f9;
      padding: 80px 5%;
  }

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

  .faq-section h2 {
      font-weight: 700;
      margin-bottom: 50px;
      color: #333;
  }

  .faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
  }

  .faq-question {
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #333;
      transition: background-color 0.3s ease;
  }

  .faq-question:hover {
      background-color: #f5f5f5;
  }

  .faq-question.active {
      background-color: #f0f0f0;
  }

  .faq-icon {
      color: #e74c3c;
      transition: transform 0.3s ease;
  }

  .faq-question.active .faq-icon {
      transform: rotate(180deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 25px;
  }

  .faq-answer.active {
      max-height: 1000px;
      padding: 0 25px 25px;
  }

  .faq-answer p {
      line-height: 1.7;
      color: #555;
  }

  /* Footnotes */
  .footnotes {
      background-color: #fff;
      padding: 40px 5%;
      font-size: 1.05rem;
      color: #666;
      line-height: 1.6;
  }

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

.footnotes p {
	margin-bottom: 10px;
	font-size: .75rem;
}

  /* Responsive Design */
  @media (max-width: 768px) {


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

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

  }




/*** Hidden Globals ****/

.global_962, .global_963 {
display: none!important;
}