* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #071330;
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 50px;
    background: #071330;
}

.logo {
    text-align: center;
    margin-right: 0px;
}

.logo h1 {
    color: white;
    font-size: 64px;
    font-style: italic;
    margin: 0;
    line-height: 1;
}

.logo p {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

nav {
    position: absolute;
    top: 40px;
    right: 50px;
}
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
	transition:.3s;
}

nav a:hover {
    color:#666;
}
.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;
}
/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.contact-section h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Image */
.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 35px;
    display: block;
    object-fit: cover;
}

/* Contact Info */
.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
}
.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;
}