       /* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Navigation styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.logo a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #4CAF50;
    color: white;
}

.hero-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #ff5722;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* Content Blocks */
.content-block {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

p, ul {
    font-size: 18px;
    margin-bottom: 20px;
}

ul {
    list-style-type: square;
}

ul li {
    margin-bottom: 10px;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #4CAF50;
    color: white;
}

/* Responsive Image */
.responsive-img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: #ff5722;
    text-decoration: none;
}

.image-links-block {
    text-align: center;
    margin: 20px 0;
}

.image-links-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 90%;
    margin: 0 auto;
}

.image-link {
    display: inline-block;
}

.image-link-img {
    max-width: 100px;
    width: 100%;
    height: auto;
}
