/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* General Styling */
body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f8f9fa;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background-color: #44af69; /* App theme color */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.app-logo {
    width: 60px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

h1 {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin: 0;
}

/* Download Button */
.download-button {
    display: block;
    font-size: 18px;
    padding: 12px 24px;
    color: #fff;
    background-color: #44af69; /* App theme color */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    margin: 20px 0; /* Top and bottom margin */
    width: 200px; /* Width adjustment */
    margin-left: auto;
    margin-right: auto; /* Centering the button */
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.download-button:hover {
    background-color: #389b5b; /* Darker shade for hover */
    transform: scale(1.05); /* Scale effect on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

/* App Screenshots */
.screenshots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.screenshot {
    width: 250px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

/* App Details */
.app-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #44af69;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.features {
    margin-bottom: 30px;
    list-style: none;
    padding-left: 20px;
}

.features li {
    margin-bottom: 10px;
}

strong,
h3 {
    color: #44af69;
}

/* Supported Companies */
ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    color: #555;
}

ul li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: #44af69;
}

/* Disclaimer */
.disclaimer {
    font-size: 14px;
    color: #6c757d;
    margin-top: 30px;
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
}

/* Footer */
.footer {
    background-color: #44af69; /* App theme color */
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Download button */
    .download-button {
        margin: 20px auto;
        width: 100%; /* Full-width on mobile */
    }

    /* Screenshots */
    .screenshots {
        justify-content: flex-start;
        gap: 10px;
    }

    /* Screenshot images */
    .screenshot {
        width: 100%;
        max-width: 100%;
    }

    /* Header adjustments for smaller screens */
    .header {
        padding: 15px;
        text-align: left;
    }

    /* Footer adjustments for smaller screens */
    .footer {
        padding: 15px;
    }

    .download-button {
        width: 80%;
    }
}
