/* ===================================
   Responsive Design - Mobile First
   =================================== */

/* Tablet Devices (768px to 1023px) */
@media (max-width: 1023px) {
    /* Typography */
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation */
    .nav-menu {
        gap: var(--space-lg);
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
        padding: var(--space-3xl) var(--space-md);
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
    
    .hero-badge-top {
        top: 90px;
        left: 10px;
        font-size: 0.875rem;
        padding: var(--space-xs) var(--space-md);
    }
    
    /* Features Grid */
    .features-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Why Choose Us */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
    
    /* Statistics */
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Fleet CTA */
    .fleet-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fleet-cta-text h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (767px and below) */
@media (max-width: 767px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Typography */
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Container */
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        padding: var(--space-4xl) var(--space-xl);
        transition: var(--transition-normal);
        z-index: 999;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-cta {
        order: -1;
        width: 100%;
        margin-bottom: var(--space-lg);
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    /* Hide desktop trust badges on mobile */
    .desktop-only {
        display: none !important;
    }
    
    /* Show trust badges inside mobile menu only */
    .nav-menu > .nav-trust-badges {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--space-md);
        margin-top: 0;
        padding-top: var(--space-md);
        border-top: 1px solid var(--light-gray);
        list-style: none;
    }
    
    .nav-menu > .nav-trust-badges .nav-trust-item {
        display: flex;
        padding: var(--space-sm) 0;
    }
    
    .nav-menu > .nav-trust-badges .live-indicator {
        margin-top: var(--space-xs);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active .hamburger {
        background: transparent;
    }
    
    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Hero */
    .hero {
        min-height: 85vh;
        padding: var(--space-2xl) var(--space-md);
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-badge-top {
        position: static;
        display: inline-flex;
        margin: 0 auto var(--space-xl);
        font-size: 0.875rem;
    }
    
    /* Trust Band */
    .trust-band {
        padding: var(--space-2xl) 0;
    }
    
    .trust-title {
        font-size: 1.75rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    /* Features Grid */
    .features-intro {
        padding: var(--space-3xl) 0;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .feature-card-modern {
        padding: var(--space-lg);
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title-modern {
        font-size: 1rem;
    }
    
    /* Urgency Banner */
    .urgency-banner {
        font-size: 0.875rem;
        padding: var(--space-sm) var(--space-md);
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    /* Pricing */
    .pricing-preview {
        padding: 0 0 var(--space-3xl);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .popular-badge {
        top: -12px;
        right: 10px;
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }
    
    .pricing-name {
        font-size: 1.375rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    /* Why Choose Us */
    .why-choose {
        padding: var(--space-3xl) 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .why-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    /* Statistics */
    .statistics {
        padding: var(--space-3xl) 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .stat-number {
        font-size: 2.75rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    /* Reviews */
    .reviews-preview {
        padding: var(--space-3xl) 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .rating-stars-large {
        font-size: 2rem;
    }
    
    /* Fleet CTA */
    .fleet-cta {
        padding: var(--space-3xl) 0;
    }
    
    .fleet-cta-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .fleet-cta-text h2 {
        font-size: 1.75rem;
    }
    
    .fleet-cta-text p {
        font-size: 1.125rem;
    }
    
    /* Final CTA */
    .final-cta {
        padding: var(--space-3xl) 0;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-text {
        font-size: 1.125rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-3xl) 0 var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        margin-bottom: var(--space-2xl);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .separator {
        display: none;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 1.625rem; }
    h2 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-badge-top {
        font-size: 0.8125rem;
    }
    
    /* Features */
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .feature-card-modern {
        padding: var(--space-md);
    }
    
    /* Pricing */
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* Statistics */
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Trust */
    .trust-title {
        font-size: 1.5rem;
    }
    
    /* Why Choose */
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Final CTA */
    .final-cta-title {
        font-size: 1.75rem;
    }
    
    /* WhatsApp and Back to Top */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 85px;
        right: 15px;
    }
}

/* Tablet Landscape (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .features-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
}

/* Landscape Orientation on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-text {
        font-size: 0.9375rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

/* Reduced Motion for Accessibility */
@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;
    }
    
    .whatsapp-float {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0056B3;
        --primary-dark: #003D82;
        --dark: #000000;
        --light-gray: #CCCCCC;
    }
    
    .btn {
        border-width: 3px;
    }
}

/* Touch Device Enhancements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        padding: var(--space-md) var(--space-xl);
    }
    
    .nav-link {
        padding: var(--space-md) 0;
    }
    
    .feature-card-modern:hover,
    .pricing-card:hover,
    .review-card:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .menu-toggle,
    .urgency-banner {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .hero {
        background: none;
        color: #000;
        padding: 2rem 0;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-text {
        color: #000;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ===================================
   Pricing Page Responsive Styles
   =================================== */

/* Tablet and Below */
@media (max-width: 1023px) {
    .pricing-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .renewal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fleet-offer-icon {
        font-size: 4rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .page-hero {
        padding: var(--space-3xl) 0 var(--space-xl);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .pricing-grid-full {
        grid-template-columns: 1fr;
    }
    
    .pricing-option {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        padding: var(--space-lg);
    }
    
    .option-badge {
        position: static;
        margin-top: var(--space-sm);
        display: inline-block;
    }
    
    .renewal-grid {
        grid-template-columns: 1fr;
    }
    
    .renewal-help-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .renewal-help-buttons .btn {
        width: 100%;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-offer-icon {
        font-size: 3rem;
    }
    
    .fleet-offer-text h2 {
        font-size: 1.75rem;
    }
    
    .fleet-offer-text p {
        font-size: 1rem;
    }
}

/* ===================================
   Contact Page Responsive Styles
   =================================== */

@media (max-width: 1023px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-card {
        padding: var(--space-xl);
    }
    
    .quick-contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: var(--space-lg);
    }
    
    .social-links-large a {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ===================================
   Services Page Responsive Styles
   =================================== */

@media (max-width: 1023px) {
    .service-lines-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-complete {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .service-line-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .service-line-card {
        padding: var(--space-2xl);
    }
    
    .service-line-card h2 {
        font-size: 1.75rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-complete {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid-complete {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   About & Reviews Page Responsive Styles
   =================================== */

@media (max-width: 1023px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .story-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-stars-huge {
        font-size: 3rem;
    }
    
    .trust-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid-full {
        grid-template-columns: 1fr;
    }
    
    .features-detailed-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   About Us Page (New) Responsive Styles
   =================================== */

@media (max-width: 1023px) {
    /* About Hero */
    .about-hero-title {
        font-size: 2.75rem;
    }
    
    .about-hero-text {
        font-size: 1.125rem;
    }
    
    .about-hero-trust {
        gap: var(--space-xl);
    }
    
    /* Origin Story */
    .origin-story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .origin-image-placeholder {
        min-height: 350px;
    }
    
    /* Gaffar Edge */
    .gaffar-edge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    /* Leadership */
    .leadership-profile-card {
        flex-direction: column;
        gap: var(--space-xl);
        padding: var(--space-2xl);
        text-align: center;
    }
    
    .profile-image-wrapper {
        margin: 0 auto;
    }
    
    .profile-specialties {
        justify-content: center;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    /* About CTA */
    .about-cta-title {
        font-size: 2.5rem;
    }
    
    .about-cta-contact {
        gap: var(--space-xl);
    }
}

@media (max-width: 767px) {
    /* About Hero */
    .about-hero {
        padding: var(--space-3xl) 0 var(--space-2xl);
        margin-top: 60px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .about-hero-text {
        font-size: 1rem;
        margin-bottom: var(--space-2xl);
    }
    
    .about-hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .about-hero-trust .trust-item {
        width: 100%;
        justify-content: center;
    }
    
    /* Origin Story */
    .origin-story {
        padding: var(--space-3xl) 0;
    }
    
    .origin-story-text h2 {
        font-size: 2rem;
    }
    
    .origin-story-text p {
        font-size: 1rem;
    }
    
    .origin-timeline {
        flex-direction: column;
        padding: var(--space-lg);
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .timeline-year {
        font-size: 1.75rem;
    }
    
    .origin-image-placeholder {
        min-height: 300px;
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .origin-image-placeholder i {
        font-size: 4rem;
    }
    
    .origin-badge {
        bottom: 20px;
        right: 20px;
        padding: var(--space-md) var(--space-lg);
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Gaffar Edge */
    .gaffar-edge {
        padding: var(--space-3xl) 0;
    }
    
    .gaffar-edge-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .gaffar-edge-card {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .edge-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .gaffar-edge-card h3 {
        font-size: 1.375rem;
    }
    
    /* Leadership */
    .leadership-team {
        padding: var(--space-3xl) 0;
    }
    
    .leadership-grid {
        gap: var(--space-2xl);
    }
    
    .leadership-profile-card {
        padding: var(--space-xl);
        border-width: 2px;
    }
    
    .profile-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .profile-initials {
        font-size: 3rem;
    }
    
    .profile-name {
        font-size: 1.625rem;
    }
    
    .profile-title {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    .profile-bio p {
        font-size: 0.9375rem;
    }
    
    .profile-specialties {
        flex-direction: column;
        width: 100%;
    }
    
    .profile-specialties span {
        width: 100%;
        justify-content: center;
        padding: var(--space-md);
    }
    
    /* Commitment Quote */
    .our-commitment {
        padding: var(--space-3xl) 0;
    }
    
    .commitment-icon i {
        font-size: 3rem;
    }
    
    .commitment-quote {
        font-size: 1.25rem;
        line-height: 1.7;
    }
    
    .commitment-attribution {
        font-size: 1.125rem;
    }
    
    /* Stats */
    .about-stats {
        padding: var(--space-3xl) 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-stats .stat-item {
        padding: var(--space-xl);
    }
    
    .about-stats .stat-number {
        font-size: 3rem;
    }
    
    .about-stats .stat-suffix {
        font-size: 2.5rem;
    }
    
    .about-stats .stat-label {
        font-size: 1.125rem;
    }
    
    /* About CTA */
    .about-cta {
        padding: var(--space-3xl) 0;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-text {
        font-size: 1.125rem;
        margin-bottom: var(--space-2xl);
    }
    
    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
        margin-bottom: var(--space-2xl);
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
    
    .about-cta-contact {
        flex-direction: column;
        gap: var(--space-lg);
        padding-top: var(--space-xl);
    }
    
    .cta-contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xs);
    }
}

@media (max-width: 480px) {
    /* About Hero */
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-text {
        font-size: 0.9375rem;
    }
    
    /* Origin Story */
    .origin-story-text h2 {
        font-size: 1.75rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .timeline-label {
        font-size: 0.875rem;
    }
    
    .origin-image-placeholder {
        min-height: 250px;
    }
    
    .origin-image-placeholder i {
        font-size: 3rem;
    }
    
    .origin-image-placeholder span {
        font-size: 1rem;
    }
    
    /* Gaffar Edge */
    .gaffar-edge-card h3 {
        font-size: 1.25rem;
    }
    
    .edge-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    /* Leadership */
    .profile-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .profile-initials {
        font-size: 2.5rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    /* Commitment Quote */
    .commitment-quote {
        font-size: 1.125rem;
    }
    
    .commitment-attribution {
        font-size: 1rem;
    }
    
    /* About CTA */
    .about-cta-title {
        font-size: 1.75rem;
    }
    
    .about-cta-text {
        font-size: 1rem;
    }
}