* {
    margin: 0;
    padding: 0;
}
body {
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: 'Lato', sans-serif;
    /* max-width: 60%; */
    /* margin: 0 auto; */
}

a {
    color: #333;
    font-weight: bold;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    margin-left: 40px;
}

header,
footer {
    width: 100%;
}

header {
    line-height: 0.85;
    border-bottom: 1px solid #f0f0f0;
}

header h1 {
    font-size: 24px;
    color: #333;
    font-weight: 400;
    letter-spacing: -2px;
    padding: 40px 0 40px 40px;
}

header span {
    color: #999;
    font-weight: 300;
}

header .focus-text {
    padding-bottom: 20px;
}

.focus-text {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -1px;
}

.focus-text.top {
    padding-bottom: 20px;
}

.content {
    display: flex;
    padding: 40px;
    padding-bottom: 20px;
    flex-direction: column;
    justify-content: flex-start;
}

.card-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-width: 94%; */
}

.card {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    width: 32%;
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.card-info-wrap {
    flex: 1;
    display: flex;
    width: 100%;
    background-color: #f6f6f6;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}
.card-info-wrap-inner {
    padding: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
}
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.card-image {
    /* aspect-ratio: 1; */
    width: 100%;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.card h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0px;
    padding: 0px 0 0px 0;
    letter-spacing: -1px;
}

.card p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    color: #333;
}

.button-wrap {
    display: flex;
    gap: 12px; /* Small gap between buttons */
    align-items: center;
}

.download-btn {
    flex: 1; /* Each button takes equal space */
    display: block;
    max-width: 140px; /* Prevent buttons from getting too wide */
}

.download-btn img {
    width: 100%;
    height: auto;
    display: block;
}

.download-btn:nth-child(1) {
    margin-right: 0; /* Remove since we're using gap now */
}

footer {
    border-top: 1px solid #f0f0f0;
    padding: 40px 0;
}

.footer-content {
    padding-left: 40px;
}

.footer-text {
    font-size: 14px;
    padding-top: 5px;
}
.footer-text a {
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}
.footer-text a:hover {
    text-decoration: underline;
}

.copyright {
    padding: 40px 0 0px 0;
    font-size: 14px;
    font-weight: 300;
}

@media screen and (max-width: 2000px) {
    body {
        /* max-width: unset; */
    }
    .card-wrap {
        max-width: unset;
    }
}

/* Large screens - keep side by side with small gap */
@media screen and (min-width: 1025px) {
    .button-wrap {
        gap: 15px;
    }
}

@media screen and (max-width: 1650px) {
    /* Removed button-wrap width override */
}

/* Medium screens - still side by side, smaller gap */
@media screen and (max-width: 1024px) {
    .card {
        width: 48%;
    }
    .content {
        padding: 20px;
        padding-bottom: 0;
    }
    header h1 {
        padding: 20px 0 20px 20px;
    }
    .focus-text {
        font-size: 24px;
    }
    .button-wrap {
        gap: 10px;
    }
    .download-btn {
        max-width: 120px;
    }
    footer {
        padding: 20px 0;
    }

    .footer-content {
        padding-left: 20px;
    }
}

/* Small screens - keep side by side with smaller gap */
@media screen and (max-width: 768px) {
    .button-wrap {
        gap: 10px;
    }

    .download-btn {
        max-width: 150px;
    }
}

@media screen and (max-width: 600px) {
    .card {
        width: 100%;
    }
    .card-info-wrap-inner {
        /* padding: 10px; */
    }
    /* Removed redundant button rules since they're now handled above */
}
