.download-option ul,
.text-content ul {
    list-style: disc;
    padding-left: 20px;
}
.download-button,
.hero-button {
    cursor: pointer;
    font-weight: 600;
}
#hero,
.download,
.download-option,
.faq,
.features {
    text-align: center;
}
body {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-wrapper {
    position: relative;
    overflow: hidden;
}
.hero-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-image.webp') center center/cover no-repeat;
    filter: blur(0px);
    z-index: -1;
}
.header.scrolled,
footer {
    background: #282f3f;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: background .3s ease-in-out;
    z-index: 1000;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.menu {
    margin-left: auto;
}
header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-size: 1em;
    font-weight: 500;
    font-family: Inter, sans-serif;
    padding: 8px 16px;
    border-radius: 25px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
}
header nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}
.faq-button {
    font-weight: 600;
}
.logo img {
    height: 90px;
}
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
#hero {
    color: #fff;
    padding: 300px 0 80px;
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: 1s forwards fadeInUp;
}
.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: 5s ease-in-out infinite breathing;
    display: inline-block;
}
.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.hero-button {
    background: #20a286;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    transition: .3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 255, 255, .4);
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    width: auto;
}
.download-button i,
.hero-button i {
    font-size: 1.2em;
    color: #fff;
}
.download-button::after,
.hero-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: #20a286;
    transition: width .3s ease-in-out;
}
.download-button:hover::after,
.hero-button:hover::after {
    width: 100%;
}
.hero-button:hover {
    background: #20a286;
    opacity: .8;
    transform: translateY(-5px);
}
.download-option:hover,
.feature-item:hover {
    transform: translateY(-10px);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes breathing {
    0%, 100%, 50% { transform: scale(1); }
    25% { transform: scale(1.05); }
    75% { transform: scale(.95); }
}
.social-bar {
    background: #e6e6e6;
    padding: 10px 0;
    margin-top: -40px;
    color: #333;
}
.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    border-radius: 10px;
}
.social-container a {
    color: #20a286;
    transition: transform .3s, color .3s;
    position: relative;
    overflow: hidden;
}
.social-container a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    transform: skewX(-45deg);
    transition: left .3s;
}
.social-container a:hover::before {
    left: 125%;
}
.social-container a:hover {
    transform: scale(1.1);
}
#security {
    background: #f5f5f5;
    color: #333;
}
.security-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.text-content {
    flex: 1;
}
.faq h2,
.text-content h2 {
    margin-bottom: 20px;
    font-size: 2em;
    position: relative;
    display: inline-block;
    color: #333;
}
.text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}
.text-content ul li {
    margin-bottom: 15px;
    font-size: 1em;
}
.image-content img {
    border-radius: 10px;
    box-shadow: none;
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-top: 130px;
}
.download,
.faq {
    text-align: center;
    color: #333;
}
.download-buttons-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.download-btn {
    background: #F5F5F5;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
    text-align: left;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out;
    text-decoration: none;
    gap: 15px;
}
.download-btn:hover {
    box-shadow: 0px 4px 6px rgba(0,0,0,0.15);
    text-decoration: none;
}
.download-icon {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}
.text-container .line1 {
    font-size: 14px;
    color: rgba(51,51,51,0.7);
    font-family: Inter, sans-serif;
    font-weight: 400;
    margin-bottom: 2px;
}
.text-container .line2 {
    font-size: 16px;
    color: #333333;
    font-family: Inter, sans-serif;
    font-weight: 600;
    margin: 0;
}

.features {
    padding: 50px 0;
    background: #f5f5f5;
    color: #333;
}
.features h2 {
    margin-bottom: 40px;
    font-size: 2em;
    position: relative;
    display: inline-block;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-item {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform .3s ease-in-out, filter .3s ease-in-out;
}
.feature-item:hover {
    filter: brightness(1.05);
}
.feature-item i {
    color: #2ac7aa;
    margin-bottom: 15px;
}
.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    text-align: left;
    width: 100%;
}
.feature-item p {
    font-size: .95em;
}
.faq h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #20a286;
    margin: 5px auto 0;
    border-radius: 2px;
}
.faq-list {
    list-style: none;
    padding: 0;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: left;
    transition: transform .3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.faq-item:hover {
    transform: translateY(-5px);
}
.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.5em;
}
.faq-item h3 i {
    color: #2ac7aa;
}
.faq-item p {
    font-size: 1.1em;
    margin-top: 0;
}
footer {
    color: #fff;
    padding: 40px 0;
}
.footer-container {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}
.footer-section {
    flex: 1;
    min-width: 200px;
}
.footer-section h3 {
    margin-bottom: 10px;
    font-weight: 700;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease-in-out;
    font-size: 1em;
    font-weight: 500;
}
.footer-section ul li a:hover {
    color: #20a286;
    text-decoration: none;
}
.footer-bottom {
    color: #fff;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 38px;
}
@media (max-width:1200px) {
    .faq-list,
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:992px) {
    .faq-list,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }
    .header-container .menu {
        order: 2;
    }
    .menu-toggle {
        display: block;
    }
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .menu.active {
        display: flex;
    }
    .faq-list,
    .feature-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .faq-item {
        max-width: 100%;
    }
    .download-buttons-new {
        flex-direction: column;
        gap: 20px;
    }
}
.blinking {
    animation: 1s infinite blink;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.text-content h2 .highlight {
    border-bottom: 4px solid #20a286;
    padding-bottom: 5px;
}
@media (max-width:600px) {
    .logo img { display: none !important; }



}
