/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;

    background-color: #fff;
}

.pricing-container {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.max-width{
    width: 100%;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 12px;
    color: #EF5F36;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pricing-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #333;
    margin-bottom: 60px;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #fff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.pricing-item:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.pricing-item:nth-child(odd) {
    background-color: #f0f0f0;
}

.pricing-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #3A3740;
    text-align: left;
}

.download-link {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #EF5F36;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.download-link:hover {
    opacity: 0.8;
}

.download-icon {
    margin-left: 10px;
    width: 24px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-heading {
        font-size: 36px;
    }
    
    .pricing-text {
        font-size: 20px;
    }
    
    .download-link {
        font-size: 18px;
    }
    
    .pricing-item {
        padding: 20px 30px;
    }

    .pricing-section{
        margin-top: 0px;
        /* padding-top: 50px; */
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .pricing-label {
        font-size: 14px;
        letter-spacing: 8px;
    }
    
    .pricing-heading {
        font-size: 30px;
        letter-spacing: 3px;
    }
    
    .pricing-text {
        font-size: 16px;
    }
    
    .download-link {
        font-size: 16px;
    }
    
    .pricing-item {
        padding: 15px 20px;
    }
}
