body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

header {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav ul li a.active, nav ul li a:hover {
    color: #a64ac9; /* Purple highlight */
}

.container {
    display: flex;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.image-content img {
    width: 250px;
    border-radius: 10px;
}

h1 {
    font-size: 36px;
}

strong {
    color: black;
}

.icons img {
    width: 40px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.icons img:hover {
    transform: scale(1.1);
}
