/* About Intro Section Styles */
.sbr-about-intro {
   background: #ffffff;
   padding: 12rem 2rem 6rem;
}


/* About Intro Container */
.sbr-container {
   max-width: 1200px;
   margin: 0 auto;
}


/* About Intro Content Layout */
.sbr-about-intro-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}


/* About Intro Text Content */
.sbr-about-intro-text h1 {
   font-size: 3rem;
   font-weight: 700;
   color: #333;
   margin-bottom: 1rem;
   position: relative;
   display: inline-block;
}

.sbr-about-intro-text h1::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 80px;
   height: 4px;
   background: #6acc5b;
}

.sbr-about-intro-text h2 {
   font-size: 1.75rem;
   font-weight: 600;
   color: #52a842;
   margin-bottom: 2rem;
   font-family: 'Gabarito', sans-serif;
}


/* About List */
.sbr-about-list {
   list-style: none;
   margin: 0;
   padding: 0;
}

.sbr-about-list li {
   font-size: 1.1rem;
   color: #666;
   line-height: 1.6;
   margin-bottom: 1rem;
   padding-left: 1.5rem;
   position: relative;
   font-family: 'Gabarito', sans-serif;
}

.sbr-about-list li::before {
   content: '✓';
   position: absolute;
   left: 0;
   color: #6acc5b;
   font-weight: bold;
   font-size: 1.2rem;
}


/* About Intro Image */
.sbr-about-intro-image img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* About Features Section Styles */
.sbr-about-features-section {
   background: #f3f3f3;
   padding: 6rem 2rem;
}


/* About Feature Boxes */
.sbr-about-features {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-bottom: 4rem;
}

.sbr-about-feature {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 1.5rem;
   padding: 2.5rem 2rem;
   background: white;
   border-radius: 10px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sbr-about-feature:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.sbr-feature-icon {
   background: #6acc5b;
   color: white;
   width: 80px;
   height: 80px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   transition: background 0.3s ease;
}

.sbr-about-feature:hover .sbr-feature-icon {
   background: #52a842;
}

.sbr-feature-text {
   font-size: 1.25rem;
   color: #333;
   font-family: 'Gabarito', sans-serif;
   font-weight: 600;
}


/* About Call to Action */
.sbr-about-cta {
   text-align: center;
   padding: 3rem 2rem;
   background: white;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   max-width: 600px;
   margin: 0 auto;
}

.sbr-about-cta h3 {
   font-size: 1.75rem;
   font-weight: 600;
   color: #333;
   margin-bottom: 2rem;
   font-family: 'Gabarito', sans-serif;
}

.sbr-about-phone {
   display: inline-flex;
   align-items: center;
   gap: 1rem;
   font-size: 2rem;
   color: #6acc5b;
   text-decoration: none;
   font-weight: 700;
   transition: color 0.3s ease;
   font-family: 'Gabarito', sans-serif;
}

.sbr-about-phone:hover {
   color: #52a842;
}

.sbr-about-phone i {
   font-size: 1.75rem;
}


/* About Section Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
   .sbr-about-intro {
       padding: 10rem 1.5rem 5rem;
   }
   
   .sbr-about-features-section {
       padding: 5rem 1.5rem;
   }
   
   .sbr-about-intro-content {
       gap: 3rem;
   }
   
   .sbr-about-intro-text h1 {
       font-size: 2.5rem;
   }
   
   .sbr-about-intro-text h2 {
       font-size: 1.5rem;
       margin-bottom: 1.5rem;
   }
   
   .sbr-about-list li {
       font-size: 1rem;
       margin-bottom: 0.75rem;
   }
   
   .sbr-about-intro-image img {
       height: 400px;
   }
   
   .sbr-about-features {
       gap: 1.5rem;
       margin-bottom: 3rem;
   }
   
   .sbr-about-feature {
       padding: 2rem 1.5rem;
   }
   
   .sbr-feature-icon {
       width: 70px;
       height: 70px;
       font-size: 1.75rem;
   }
   
   .sbr-feature-text {
       font-size: 1.1rem;
   }
   
   .sbr-about-cta h3 {
       font-size: 1.5rem;
       margin-bottom: 1.5rem;
   }
   
   .sbr-about-phone {
       font-size: 1.75rem;
   }
}

/* Mobile Styles */
@media (max-width: 768px) {
   .sbr-about-intro {
       padding: 9rem 1rem 4rem;
   }
   
   .sbr-about-features-section {
       padding: 4rem 1rem;
   }
   
   .sbr-about-intro-content {
       grid-template-columns: 1fr;
       gap: 3rem;
   }
   
   .sbr-about-intro-text h1 {
       font-size: 2rem;
       text-align: center;
   }
   
   .sbr-about-intro-text h1::after {
       left: 50%;
       transform: translateX(-50%);
   }
   
   .sbr-about-intro-text h2 {
       font-size: 1.25rem;
       margin-bottom: 1.25rem;
       text-align: center;
   }
   
   .sbr-about-list li {
       font-size: 0.95rem;
       margin-bottom: 0.75rem;
   }
   
   .sbr-about-intro-image img {
       height: 300px;
       border-radius: 10px;
   }
   
   .sbr-about-features {
       grid-template-columns: 1fr;
       gap: 1.5rem;
       margin-bottom: 2.5rem;
   }
   
   .sbr-about-feature {
       padding: 2rem 1.5rem;
   }
   
   .sbr-feature-icon {
       width: 60px;
       height: 60px;
       font-size: 1.5rem;
   }
   
   .sbr-feature-text {
       font-size: 1rem;
   }
   
   .sbr-about-cta {
       padding: 2rem 1.5rem;
   }
   
   .sbr-about-cta h3 {
       font-size: 1.25rem;
       margin-bottom: 1.25rem;
   }
   
   .sbr-about-phone {
       font-size: 1.5rem;
   }
}