/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 60px 0;
  }

  .slide-title {
    font-size: 3rem;
  }

  .slide-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .section-title {
    font-size: 2rem;
  }
  /* Chuẩn hóa tất cả section-title trên mobile */
  .vision-mission .section-title,
  .clients .section-title,
  .about-text .section-title,
  .statistics .section-title,
  .team .section-title,
  .bg-primary .section-title {
    font-size: 2rem;
    text-align: center;
  }
  .about-description {
    padding: 0 10px;
  }
  .contact-info-section {
    margin-top: 3rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .about-content,
  .story-content,
  .service-content,
  .contact-content,
  .featured-article,
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 2rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .values-grid .value-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .values-grid .value-card:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .values-grid .value-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .values-grid .value-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .values-grid .value-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-subtitle {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .slide-buttons {
    flex-direction: column;
    align-items: center;
  }

  .slider-nav {
    padding: 0 1rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
  }
  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  #langDropdown {
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  /* Logo Mobile Styles */
  .nav-brand-link {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .logo-img {
    height: 40px;
  }

  .brand-text {
    align-items: center;
  }

  .logo {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tagline {
    font-size: 0.6rem;
  }

  /* Free Consultation Button Mobile */
  .nav-consultation {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }

  .consultation-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  /* Modal Mobile Styles */
  .modal-overlay {
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1.5px);
  }

  .modal-container {
    width: 100%;
    max-height: calc(100vh - 20px);
    margin: 0;
    border-radius: 20px;
    transform: scale(0.8);
  }

  .modal-header {
    padding: 24px 20px 16px;
    border-radius: 20px 20px 0 0;
  }

  .modal-header::before {
    border-radius: 20px 20px 0 0;
  }

  .modal-title {
    font-size: 1.4rem;
    gap: 8px;
  }

  .modal-title i {
    font-size: 1.25rem;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 16px 20px 20px;
    border-radius: 0 0 20px 20px;
  }

  .modal-subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .consultation-form {
    gap: 6px;
  }

  .consultation-form .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea {
    padding: 5px 8px;
    font-size: 0.8rem;
  }

  .consultation-form textarea {
    min-height: 45px;
    max-height: 70px;
  }

  .consultation-form .checkbox-group {
    padding: 12px 16px;
    margin-top: 4px;
  }

  .form-actions {
    margin-top: 8px;
    padding-top: 12px;
  }

  .form-actions .btn {
    min-width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* Modal Success State Mobile */
  .modal-body .form-success {
    padding: 40px 16px;
  }

  .modal-body .success-content i {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .modal-body .success-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .modal-body .success-content p {
    font-size: 1rem;
  }

  /* Mobile dropdown styles */
  .nav-dropdown {
    position: static;
  }

  .services-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    min-width: auto;
    margin-top: 0;
    padding: 0;
    margin-left: 2rem;
  }

  .services-dropdown::before {
    display: none;
  }

  .dropdown-link {
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1rem;
    color: #666;
  }

  .dropdown-link:hover {
    background: transparent;
    color: #1e3a8a;
    padding-left: 0;
  }

  .nav-chevron {
    display: none;
  }

  .page-header {
    min-height: 500px;
    padding: 2rem 0;
  }

  .page-header-content {
    padding: 1rem 0;
  }

  .page-header-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    white-space: normal;
  }

  .page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .page-header-description {
    margin-bottom: 2rem;
  }

  .page-header-description p {
    font-size: 1rem;
  }

  .page-header-stats {
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .page-header-stats .stat-item {
    padding: 1rem;
  }

  .page-header-stats .stat-number {
    font-size: 2rem;
  }

  .page-header-stats .stat-label {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
  /* Chuẩn hóa tất cả section-title trên mobile */
  .vision-mission .section-title,
  .clients .section-title,
  .about-text .section-title,
  .statistics .section-title,
  .team .section-title,
  .bg-primary .section-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .services-grid,
  .locations-grid,
  .industries-grid,
  .team-grid,
  .articles-grid,
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .values-grid .value-card:nth-child(1),
  .values-grid .value-card:nth-child(2),
  .values-grid .value-card:nth-child(3),
  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) {
    grid-column: 1 / 2;
  }

  .values-grid .value-card:nth-child(1) {
    grid-row: 1 / 2;
  }

  .values-grid .value-card:nth-child(2) {
    grid-row: 2 / 3;
  }

  .values-grid .value-card:nth-child(3) {
    grid-row: 3 / 4;
  }

  .values-grid .value-card:nth-child(4) {
    grid-row: 4 / 5;
  }

  .values-grid .value-card:nth-child(5) {
    grid-row: 5 / 6;
  }

  .stats-grid {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-nav-list {
    gap: 0.5rem;
  }

  .services-nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }

  .filter-tabs {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .featured-article {
    gap: 1.5rem;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .newsletter-content {
    gap: 2rem;
  }

  .subscription-form .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn,
  .cta-buttons .btn,
  .slide-buttons .btn {
    width: 200px;
    justify-content: center;
  }

  /* Blog responsive */
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-content {
    order: 1;
  }

  .blog-sidebar {
    position: static;
    order: 2;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-meta {
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }

  .sharing-buttons {
    justify-content: center;
  }

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

/* Mobile Portrait */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }

  .slide-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .slide-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .slider-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .page-header {
    min-height: 400px;
    padding: 1.5rem 0;
    margin-top: 70px;
  }

  .page-header-content {
    padding: 0.5rem 0;
  }

  .page-header-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    white-space: normal;
  }

  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .page-header-description {
    margin-bottom: 1.5rem;
  }

  .page-header-description p {
    font-size: 0.9rem;
  }

  .page-header-stats {
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .page-header-stats .stat-item {
    padding: 0.75rem;
    min-width: 120px;
  }

  .page-header-stats .stat-number {
    font-size: 1.5rem;
  }

  .page-header-stats .stat-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
  /* Chuẩn hóa tất cả section-title trên mobile */
  .vision-mission .section-title,
  .clients .section-title,
  .about-text .section-title,
  .statistics .section-title,
  .team .section-title,
  .bg-primary .section-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .service-card,
  .location-card,
  .value-card,
  .industry-card,
  .team-member,
  .news-card,
  .insight-card {
    padding: 1.5rem;
  }

  .service-image {
    height: 160px;
  }

  .service-content {
    padding: 1.25rem;
  }

  .service-icon,
  .location-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .value-icon,
  .industry-icon,
  .insight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-image img,
  .story-image img,
  .service-image img {
    height: 250px;
  }

  .member-image {
    height: 200px;
  }

  .article-image,
  .featured-article .article-image {
    height: 200px;
  }

  .card-image {
    height: 150px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .location-detail {
    margin-bottom: 1.5rem;
  }

  .location-header {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .location-info {
    padding: 1rem;
  }

  .footer-content {
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .article-title {
    font-size: 1.25rem;
  }

  .card-title {
    font-size: 1.125rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .slide-title {
    font-size: 1.75rem;
  }

  .slide-subtitle {
    font-size: 0.875rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .page-header {
    min-height: 350px;
    padding: 1rem 0;
  }

  .page-header-content {
    padding: 0.25rem 0;
  }

  .page-header-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .page-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    white-space: normal;
  }

  .page-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .page-header-description {
    margin-bottom: 1rem;
  }

  .page-header-description p {
    font-size: 0.8rem;
  }

  .page-header-stats {
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-direction: column;
    align-items: center;
  }

  .page-header-stats .stat-item {
    padding: 0.5rem;
    min-width: 100px;
    width: 100%;
    max-width: 150px;
  }

  .page-header-stats .stat-number {
    font-size: 1.25rem;
  }

  .page-header-stats .stat-label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.375rem;
  }
  /* Chuẩn hóa tất cả section-title trên mobile */
  .vision-mission .section-title,
  .clients .section-title,
  .about-text .section-title,
  .statistics .section-title,
  .team .section-title,
  .bg-primary .section-title {
    font-size: 1.375rem;
    text-align: center;
  }

  /* Logo Small Mobile Styles */
  .logo-img {
    height: 35px;
  }

  .logo {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tagline {
    font-size: 0.55rem;
  }

  .service-card,
  .location-card,
  .value-card,
  .industry-card,
  .insight-card {
    padding: 1.25rem;
  }

  .service-image {
    height: 160px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .team-member {
    padding: 0;
  }

  .member-info {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 180px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .newsletter-title,
  .cta-title {
    font-size: 1.375rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  /* New Homepage Sections - Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industry-card {
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .mission-section .mission-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .mission-title {
    font-size: 2rem;
  }

  .mission-values {
    padding: 1.5rem;
  }

  .values-list li {
    font-size: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
  .contact-info-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 1.75rem;
  }

  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  /* Free Consultation Button Small Mobile */
  .consultation-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  /* Modal Small Mobile Styles */
  .modal-overlay {
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
  }

  .modal-container {
    width: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
    transform: scale(0.8);
  }

  .modal-header {
    padding: 20px 16px 12px;
    border-radius: 0;
  }

  .modal-header::before {
    border-radius: 0;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-body {
    padding: 12px 16px 16px;
    border-radius: 0;
  }

  .consultation-form {
    gap: 4px;
  }

  .consultation-form .form-row {
    gap: 4px;
  }

  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea {
    padding: 4px 6px;
    font-size: 0.75rem;
  }

  .consultation-form textarea {
    min-height: 40px;
    max-height: 55px;
  }

  .form-actions .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Landscape Mobile Specific */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .page-header {
    height: 200px;
  }

  .section {
    padding: 30px 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image,
  .page-header-background img,
  .about-image img,
  .story-image img,
  .service-image img,
  .member-image img,
  .article-image img,
  .card-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header,
  .nav-toggle,
  .hero,
  .cta,
  .newsletter,
  .footer {
    display: none;
  }

  .page-header {
    margin-top: 0;
    height: auto;
    padding: 20px 0;
  }

  .page-header-background,
  .page-header-overlay {
    display: none;
  }

  .page-header-content {
    color: #333;
  }

  .section {
    padding: 20px 0;
  }

  .service-card,
  .location-card,
  .value-card,
  .industry-card,
  .news-card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }

  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1 {
    font-size: 20pt;
  }
  h2 {
    font-size: 18pt;
  }
  h3 {
    font-size: 16pt;
  }
  h4 {
    font-size: 14pt;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-slide-up,
  .animate-slide-up-delay,
  .animate-fade-in,
  .animate-on-scroll {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  /* This can be implemented if dark mode is desired */
  /* For now, maintaining the corporate brand colors */
}

/* Accessibility Improvements */
@media (min-width: 769px) {
  .nav-link:focus-visible {
    outline: 2px solid #1e3a8a;
    outline-offset: 4px;
    border-radius: 4px;
  }

  .btn:focus-visible {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
  }

  .form-group input:focus-visible,
  .form-group select:focus-visible,
  .form-group textarea:focus-visible {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
  }
}

/* Container Queries (Modern Browsers) */
@supports (container-type: inline-size) {
  .service-card,
  .location-card,
  .value-card,
  .industry-card {
    container-type: inline-size;
  }

  @container (max-width: 250px) {
    .service-icon,
    .location-icon,
    .value-icon,
    .industry-icon {
      width: 50px;
      height: 50px;
      font-size: 1.25rem;
    }

    .service-card h3,
    .location-card h3,
    .value-card h3,
    .industry-card h3 {
      font-size: 1.125rem;
    }
  }
}

/* Customer Benefits Responsive Styles */
@media (max-width: 768px) {
  .benefits-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

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

  .benefit-item {
    gap: 0.75rem;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .benefit-icon i {
    font-size: 1.1rem;
  }

  .benefit-content h3 {
    font-size: 1.1rem;
  }

  .benefit-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .customer-benefits-section {
    padding: 60px 0;
  }

  .benefits-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .benefits-grid {
    gap: 1rem;
  }

  .benefit-item {
    gap: 0.75rem;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .benefit-icon i {
    font-size: 1rem;
  }

  .benefit-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}
