/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    color: #fff; /* Ensure "Telecom Beirut" is pure white */
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #007BFF;
}

.custom-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5em; /* Double the size of the current font */
}

.custom-link:hover {
    color: #f0f0f0; /* Optional: Change color on hover */
    text-decoration: none; /* Optional: Add underline on hover */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #007BFF;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Container Styles */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #444;
    text-align: center;
}

h2 {
    color: #555;
    margin-top: 20px;
}

p {
    line-height: 1.6;
}

ul {
    margin: 20px 0;
    padding-left: 40px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background-color: #0056b3;
}

.webinar {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Newsletter Section Styles */
.newsletter-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0056b3;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.social-media a:hover {
    color: #007BFF;
}