body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: black;
    scroll-behavior: smooth;
}
nav {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: white;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
ul li a {
    color: black;
    text-decoration: none;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero img {
    max-width: 40%;
    height: auto;
    max-height: 100%;
}
.hero-content {
    margin: 10%;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin: 10px 0 20px;
}
a {
    color: black;
    text-decoration: none;
}
.cta-button {
    display: inline-flex;
    padding: 12px 24px;
    background: #1E90FF;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s;
}
.cta-button:hover {
    transform: scale(1.1);
}

.sectionBlue {
    padding: 10% 0;
    text-align: center;
    background-color: #1E90FF;
    color: white;
}

.sectionWhite {
    padding: 10% 0;
    text-align: center;
    background-color: white;
}

.whiteFont {
    color: white;
}

.sectionPink {
    padding: 10% 0;
    text-align: center;
    background-color: #ff758c;
}