* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #ffffff;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

/* CONTACT */
.contact-section {
    padding: 80px 8%;
}

.contact-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-content {
    flex: 1;
}

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 16px;
    color: #475569;
    max-width: 480px;
    margin-bottom: 30px;
}

/* BUTTON */
.contact-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #1d4ed8;
}

/* INFO */
.contact-info {
    margin-top: 40px;
}

.contact-info h3,
.socials h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 15px;
}

/* SOCIALS */
.socials {
    margin-top: 30px;
}

.social-link {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

/* IMAGE */
.contact-image {
    flex: 1;
    text-align: center;
}

.contact-image img {
    width: 360px;
    max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .contact-content p {
        margin: auto;
    }
}

.logo img {
    height: 80px;        /* control logo size */
    width: auto;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
}