* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #071330;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
}

.nav-links {
    display: flex;
	flex-wrap: wrap;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 14px;
    text-decoration: none;
	display:block;
	width:100px;
	padding:1px;
	transition:.3s;
}
.nav-links a:hover{
    color:#666;
}
li{
	display:inline-block;
	margin:5px;
	border-color:white;
	text-align: left;
}
.logo {
    text-align: center;
    margin-right: 0px;
}

.logo h1 {
    color: white;
    font-size: 64px;
    font-style: italic;
    margin: 0;
    line-height: 1;
}

.logo span {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}
.search-box{
    width: 280px;      
    height: 45px;      
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.search-box input{
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 15px;
}

.search-box button{
    width: 55px;
    height: 45px;
    border: none;
    background: #1296e8;
    color: white;
    cursor: pointer;
}
.about-section{
    min-height:100vh;
    width:100%;
    padding:120px 8%;
    position:relative;
}

/* LARGE FADED TITLE */

.bg-title{
    font-size:5rem;
    font-weight:800;
    color:#ece8f4;
    margin-bottom:60px;
}

/* MAIN LAYOUT */

.about-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
}

/* IMAGE */

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    max-width:600px;
    border-radius:18px;
    display:block;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.4s ease;
}

.about-image img:hover{
    transform:translateY(-6px);
}

/* CONTENT */

.about-content{
    flex:1;
    max-width:500px;
    text-align:center;
}

.about-content h2{
    font-size:1.8rem;
    font-weight:700;
    color:grey;
    margin-bottom:30px;
    line-height:1.5;
}

.about-content p{
    font-size:1.1rem;
    line-height:2;
    color:#5f5f5f;
}
.footer {
    display: flex;
    justify-content: center;
    gap: 120px;
    padding: 40px 0;
    background-color: #06122c;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #8a90a6;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}
