:root {
    --primary-color: #FFB800;
    --secondary-color: #1a1a1a;
    --text-color: #FFFFFF;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --hover-color: #FFD700;
    --accent-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navbar */
header {
    background-color: var(--dark-bg);
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 1001;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: auto;  /* يدفع العناصر الأخرى إلى اليمين */
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar-dark {
    background-color: var(--dark-bg);
}

.navbar-nav {
    align-items: center;
    margin-left: auto;  /* يضع القائمة في اليمين */
}

.nav-link {
    color: var(--text-color) !important;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand {
        position: relative;
        left: 0;
        top: 0;
    }

    .navbar-brand img {
        height: 55px;
        object-fit: contain;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 50px;
        object-fit: contain;
        max-width: none;
    }

    .navbar {
        padding: 0.7rem 0;
    }
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.85)),
                url('../HOME/7085824.jpg') center/cover fixed;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    animation: slideDown 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
    color: #FFB800;
    display: block;
    font-size: 3.5rem;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    animation: slideUp 1s ease-out 0.3s backwards;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 968px) {
    #hero {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h1 .highlight {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    #hero {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 .highlight {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Vision & Mission Section */
.vision-mission {
    background-color: #121212;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.3), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #FFB800;
    margin: 1rem auto;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-card, .mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInRotate 0.8s ease-out backwards;
}

.vision-card {
    animation-delay: 0.2s;
}

.mission-card {
    animation-delay: 0.4s;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 184, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.vision-card:hover::before, .mission-card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 2.5rem;
    color: #FFB800;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.card-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background-color: #1a1a1a;
    padding: 6rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInRotate 0.8s ease-out backwards;
    cursor: pointer;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 184, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: #FFB800;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
}

.service-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    display: none;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #FFB800, #FFC933);
    color: #121212;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFC933, #FFB800);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.contact-btn:hover::before {
    opacity: 1;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: rotate(-10deg) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: rotate(0) translateY(0);
    }
}

/* Apply Animations */
.vision-card:hover .card-icon,
.mission-card:hover .card-icon {
    animation: pulse 1s ease-in-out infinite;
}

.service-card:hover .service-icon {
    animation: pulse 1s ease-in-out infinite;
}

.section-title::after {
    background: linear-gradient(90deg, #FFB800, #FFC933, #FFB800);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.primary-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .vision-card, .mission-card {
        padding: 2rem;
    }
}

/* Vision & Mission Section */
#vision-mission {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    background-color: var(--secondary-color);
}

.vision-box, .mission-box {
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.vision-box h2, .mission-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section */
#about {
    padding: 5rem 5%;
    background-color: var(--dark-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.about-content {
    padding-right: 30px;
}

.about-content .section-title {
    margin-bottom: 30px;
}

.title-bar {
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px 0;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-text h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin: 0;
}

.about-stats {
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    padding: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.grid-item:first-child {
    grid-column: 1 / -1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-stats .col-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-content h3 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 15px;
    }
}

/* Products Section */
#products {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
}

.product-category {
    margin-bottom: 4rem;
}

.product-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--accent-color);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.product-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-card h4 {
    color: var(--text-color);
}

/* CTA Section */
#cta {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)),
                url('../images/cta-bg.jpg') center/cover;
}

#cta h2 {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

/* Buttons */
.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
}

.secondary-button {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-brand img {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        width: 200px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 180px;
    }
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .product-content h3 {
        font-size: 1.3rem;
    }

    .product-content p {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 40px;
}

.title-bar {
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
}

.about-content h3 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

.feature-text h4 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-text p {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.about-cta {
    margin-top: 50px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 991px) {
    .about-content h3 {
        font-size: 2rem;
    }

    .feature-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-content h3 {
        font-size: 1.8rem;
    }

    .about-content .lead {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-cta .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }

    .about-cta .btn + .btn {
        margin-left: auto;
    }
}
