/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.top-bar {
    background-color: #3da5d9;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar span, .top-bar .social-icons a {
    color: black;
    margin-right: 20px;
}

.top-bar .social-icons a {
    color: #000;
    margin-right: 10px;
}

nav {
    background-color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

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

nav ul li {
    margin-left: 20px;
}

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

.hero {
    background-image: url('Designer.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ffdf00;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.welcome {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.welcome h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.welcome p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

