/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

h1, h2 {
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.hero-section .hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-section .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-section .cta-button {
    background-color: #ff7f50;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.hero-section .cta-button:hover {
    background-color: #ff6347;
}

/* Webinar Details Section */
.webinar-details {
    background-color: #f7f7f7;
    padding: 50px 20px;
}

.webinar-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

.webinar-details h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.webinar-details ul {
    list-style: none;
    padding: 0;
}

.webinar-details ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Registration Form Section */
.registration-form {
    background-color: #fff;
    padding: 50px 20px;
}

.registration-form h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}