/* General Centered Container for About & Download */
.about-section .inner,
.download-section .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px; /* 40px top/bottom, 30px left/right */
}

/* About Section - Dark */
.about-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #f1f1f1;
}
.about-section h2 {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 20px;
}
.about-section h3 {
    margin-top: 30px;
    font-size: 1.8em;
    color: #ffffff;
}
.about-section p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px; 
}
.about-section .features-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.about-section .features-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Flex layout */
.about-section .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.about-section .about-text {
    flex: 1 1 500px;
}
.about-section .about-image {
    flex: 1 1 400px;
    text-align: center;
}
.about-section .about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.features-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Features Grid */
.features-section {
    background: #111;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
/* Feature Card Images */
.feature-card img {
    max-width: 250px;       /* keeps image within card */
    height: auto;          /* maintain aspect ratio */
    display: block;
    margin: 0 auto 15px;   /* center and add spacing below */
}

/* Feature Card Titles & Text */
.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 1em;
    line-height: 1.6;
}

/* Optional: Card Hover Effect */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* Ensure Flex Grid Wraps Nicely */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.feature-card {
    flex: 1 1 250px;  /* grows/shrinks but minimum 250px */
    max-width: 300px; /* limits width */
    box-sizing: border-box;
    text-align: center;
}

.feature

.download-section {
    padding: 80px 20px;  /* 80px top/bottom, 20px left/right */
    background: #1a1a1a; /* dark background */
    color: #f1f1f1;
    text-align: center;
}
.download-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.download-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.download-btn a img {
    max-width: 220px;
    transition: transform 0.3s;
}
.download-btn a img:hover {
    transform: scale(1.05); /* subtle zoom on hover */
}

/* Optional: Links and buttons hover */
a:hover {
    opacity: 0.85;
    transition: 0.3s;
}


/* Footer Styles */
.site-footer {
    background: #111;      /* dark footer */
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
}
.site-footer a {
    color: #fff;
    text-decoration: none;
}
.site-footer a:hover {
    color: #1e90ff;  /* highlight on hover */
}
.site-footer .footer-social {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.site-footer .footer-social li {
    display: inline-block;
}
.site-footer .footer-social a {
    font-weight: bold;
}
