/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #dfe4ef;
    color: #1f3b68;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 48px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    margin-bottom: 48px;
}

.logo {
    width: 74px;
    margin-bottom: 32px;
}

.logo img {
    width: 100%;
    height: auto;
}

.name {
    margin-bottom: 12px;
}

.title {
    font-size: 18px;
    font-weight: 400;
    color: #95a2bd;
}

.main-content {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 52px;
}

.download-section {
    text-align: left;
}

.download-actions {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.download-btn {
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.download-btn .download-icon {
    width: 20px;
    height: 20px;
}

.download-btn.primary {
    background-color: #e63a35;
    color: #fff;
}

.download-btn.primary:hover {
    background-color: #cb2e29;
}

.download-btn.secondary {
    background-color: transparent;
    border-color: #e63a35;
    color: #e63a35;
}

.download-btn.secondary:hover {
    background-color: #e63a35;
    border-color: #e63a35;
    color:rgb(255, 255, 255);
}

.btn-text {
    font-weight: 600;
}

.btn-format {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
}

.download-description {
    font-size: 13px;
    color:rgb(122, 131, 149);
    margin-top: 16px;
    margin-left: 8px;
}

.contact-section {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item img,
.contact-inline-icon {
    width: 22px;
    height: 22px;
    color: #9bd1a2;
    flex-shrink: 0;
}

.contact-inline-icon {
    stroke: #9bd1a2;
}

.contact-text {
    font-size: 15px;
    color: #8a97b0;
    font-weight: 500;
}

.contact-subtext {
    font-size: 13px;
    color: #bac2d4;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header,
.main-content,
.contact-section {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .container {
        padding: 48px 20px 32px;
    }

    .download-actions {
        flex-direction: column;
        gap: 16px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .contact-text {
        font-size: 14px;
    }
}
