/* Reset e box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Stili di base del body */
body {
    background: linear-gradient(to bottom, #f0f7ff, #ffffff);
}

/* Container principale */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: #1a73e8;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    border: 2px solid white;
    color: white;
    background: transparent;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-paypal {
    background: #0070ba;
    color: white;
}

.btn-paypal:hover {
    background: #00549f;
    transform: scale(1.05);
}

.btn-bank {
    background: #f8fafc;
    color: var(--text-dark);
    border: 1px solid #ddd;
}

.btn-bank:hover {
    background: #e3f2fd;
    color: #1a73e8;
    transform: scale(1.05);
}

/* Badge */
.badge {
    background: #e3f2fd;
    color: #1a73e8;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    display: inline-block;
}

/* Animazioni */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* Text styles */
h1, h2, h3, h4, h5, h6 {
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1557b0;
}

/* Basic form elements */
input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #1a73e8;
}
.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

#paypal-button-package1,
#paypal-button-package2,
#paypal-button-package3 {
    width: 100%;
    max-width: 400px; /* Adatta la larghezza */
}
.paypal-button-container iframe {
    width: 100%;
    height: auto;
}