/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

body {
    font-family: 'Abel', sans-serif;
    background-color: white;
}

header {
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #eee;
    max-width: 1000px;
}

.image-cropper {
    height: 100px;
    width: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 20px;
}

#team-container {
    width: 100%;
    align-content: center;
    padding: 100px;
}

#team {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    background-color: #f2f7ff;
    padding: 100px;
    border-radius: 20px;

}

#team img {
    height: 100px;
}

#team h1 {
    font-family: 'Inter', sans-serif;
    font-size: 43px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 50px;
}

#team .name {
    margin-bottom: 60px;
}

#team p {
    line-height:150%;
    display: flex;
}

#team .description {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

#team .description div {
    width: 50%;
}
#team .description div p {
    margin-bottom: 30px;
}

p {
    font-family: 'Inter', sans-serif;
    color: #3d3d3d;
    line-height: 1.2em;
    letter-spacing: 0px;
    font-weight: 300;
}

strong {
    font-weight: bold;
}
/* Navigation styles */
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
}
nav {
    width: 100%;
}
.right-nav {
    width: 100%;
    min-width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.left-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 30px;
}

.logo img {
    width: 23px;
    height: 23px;
    margin-right: 10px;
}

#schedule-btn {
    padding: 10px 15px;
    border: 1px solid #222;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-family: 'Abel', sans-serif;
    font-weight: 600;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 70px;
    margin-top: 50px;
}
.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 43px;
    text-align: center;
}

.hero p {
    text-align: left;
    color: #424242;
    font-size: 20px;
    width: 85%;
    max-width: 500px;
}

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

.buttons a {
    padding: 12px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background-color: #5b73ef;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0px 4px 10px #5b73ef;
}

.btn-primary:hover {
    background-color: #6c84ff;
}

.btn-secondary {
    background-color: #ebebeb;
    color: #333;
}

.btn-secondary:hover {
    background-color: #f2f2f2;
}

/* Robot Section */
.content section {
    display: flex;
    align-items: center;
    gap: 100px;
    width: fit-content;
    margin: auto;
}

.content section p {
    font-size: 21px;
}

.content section img {
    width: 80%;
    max-width: 405px;
    height: auto;
    box-shadow: .39809593676181976px .39809593676181976px .5629926728941875px -.9375px #0000002e,1.207253071552259px 1.207253071552259px 1.7073136670057811px -1.875px #0000002c,3.1913267607422307px 3.1913267607422307px 4.51321758700586px -2.8125px #00000026,10px 10px 14.142135623730951px -3.75px #00000010
}

.content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin: 50px;
}
