@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #6366F1;
    --accent-color: #3f83f8;
    --text-color: #333333;
    --link-color: #2563eb;
    --background-color: #ffffff;
    --light-gray: #f0f0f0;
    --gray: #808080;
    --dark-gray: #555;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.header-content {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    padding: 1rem;
}

.logoImage {
    height: 2rem;
    width: 15rem;
    object-fit: contain;
}

.nav {
    display: none;
    gap: 1.5rem;
}

@media screen and (min-width:852px) {
    .nav {
        display: flex;
        justify-content: space-around;
        position: relative;
        left: -1.5rem;
    }
}

.nav-link {
    color: #718096;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.1s;
}

.nav-link:hover {
    color: var(--link-color);
}

.contactButton {
    display: none;
    border: none;
    border-radius: 0.375rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    transition: all 0.1s;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (min-width:852px) {
    .contactButton {
        display: block;
    }
}

.contactButton:hover {
    background-color: #5254f8;
}

.hamburgerButton {
    display: none;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--background-color);
    padding: 0.5rem 0.9rem;
}

@media screen and (max-width:768px) {
    .hamburgerButton {
        display: block;
    }
}

.menuIcon {
    height: 1.5rem;
    width: 1.5rem;
}

/* Main Content Styles */
.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Company Info Section */
.company-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.company-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 10px;
}

.info-card a {
    color: #0056b3;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Team Section */
.contact-people {
    text-align: center;
    margin-bottom: 20px;
}

.contact-people h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content p {
    font-size: 1rem;
    color: #666;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    margin-top: 20px;
}

footer p {
    font-size: 0.9rem;
}