#about {
    background-color:  #0d1b2a;
    color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fdfdfd;
    color: #1a1a1a;
    line-height: 1.6;
}

#about h2 {
    font-size: 36px;
    color: #cfd6e4;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
}

#about h3 {
    font-size: 24px;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;

}

#about p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

#about ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    display: inline-block;
    color: #ffffff;

}

#about ul li {
    font-size: 18px;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

#about ul li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #ffffff;;
}

nav {
    background-color: #0d1b2a;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
   

}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;

}

nav a:hover {
    background-color: #ffffff;
    color: #0d1b2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
aside {
    background-color: #f5f7f9;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

aside section {
    flex: 1 1 250px;
}

aside h3 {
    margin-bottom: 1rem;
    color: #0d1b2a;
    border-bottom: 2px solid #86a8e7;
    padding-bottom: 0.5rem;
}

aside ul {
    list-style: none;
    padding-left: 0;
}

aside li a,
aside ul a {
    color: #0d1b2a;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

aside li a:hover {
    color: #ff7e5f;
}


footer {
    background-color: #0d1b2a;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;}