* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

.navbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 60px;
    padding: 0 20px;    
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

.nav-item a { 
    text-decoration: none;
    color: #ffffff;
    padding: 5px 2px;
    font-size: large;
    font-weight: 800;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.nav-item a.active {
    color: white;
    border-bottom: 2px solid #ffffff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.container h1 {
    color: #333;
    margin-bottom: 30px;
}

.feature-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.feature-content h2 {
    color: #333;
    margin-top: 0;
}

.feature-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 30px 0;
}

.feature-card {
    flex: 1;

    padding: 30px;
    border-radius: 8px;

    text-align: center;
}

.feature-card h2 {
    color: #333;
    margin-top: 0;
}

.feature-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.feature-img {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

.feature-image {
    max-width: 95%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 50px;
}