body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #f0f0f0;
    background-color: #1e1e2e;
}

header {
    background: linear-gradient(45deg, #2c2c3c, #494973);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header img {
    max-height: 50px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

nav a {
    color: #dabfff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1em;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav a:hover {
    color: #fff;
    border-bottom: 2px solid #dabfff;
}

.container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2c2c3c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #dabfff;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 3px solid #dabfff;
    padding-bottom: 5px;
    font-family: 'Georgia', serif;
}

.photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.photos img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.books {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.book {
    background-color: #3a3a4a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book img {
    max-width: 100%;
    border-radius: 10px;
}

.book:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.book h3 {
    color: #dabfff;
    font-size: 1.5em;
}

.book a {
    color: #dabfff;
    text-decoration: none;
    font-size: 0.9em;
}

.book a:hover {
    text-decoration: underline;
}

footer {
    background-color: #1b1b2b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #dabfff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.welcome p {
    font-size: 1.3em;
    line-height: 1.8;
    text-align: center;
}

.welcome {
    text-align: center;
}

.consulting-logo {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
