@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #f4f4f9;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    background: #2c2c2c;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    border: 1px solid #444;
}

header h1 {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.3em;
    color: #d4af37; /* Gold accent */
    margin-top: 5px;
    font-weight: 600;
}

h2 {
    font-size: 2em;
    color: #fff;
    margin-top: 40px;
    font-weight: 600;
}

.session-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #f4f4f9;
    margin-top: 20px;
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    color: #d4af37; /* Gold accent */
    margin: 10px 0 30px 0;
}

p {
    color: #ccc;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
}

ul li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23d4af37" class="bi bi-check-circle-fill" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/></svg>') no-repeat left center;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #f4f4f9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #1a1a1a;
    padding: 18px 35px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.small-text {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 20px;
}

footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #888;
}

.logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #d4af37;
    margin-top: 20px;
    object-fit: cover;
}

.coaching-video {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    border-radius: 10px;
    border: 2px solid #d4af37;
}