
.premium-section {
    text-align: center;
    padding: 10%;
    margin: auto;
    background-color: #dcdcdc;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.premium-section img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
}

.premium-section h2 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.premium-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.premium-section a {
    color: #333;
    text-decoration: underline;
}

.premium-section button {
    background-color: white;
    border: 2px solid #ccc;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    max-width: 300px;

    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    
}

.premium-section button:hover {
    background-color: #f0f0f0;
    border-color: #999;
}