@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans_24pt-Bold.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans Bold';
    src: url('../fonts/DMSans-Black.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}


.custom-navbar {
    background-color: #181818;
}

.navbar {
    font-family: 'DM Sans';
    font-size: 20px;
    color: #ffffff;
}

.navbar-brand img {
    margin-left: 50px;
}

.navbar-nav{
    margin-left: 0px;
}

.navbar-nav .nav-link {
    color: #ffffff;; 
    transition: transform 0.3s ease-in-out;
    margin-left: 15px; 
}

.navbar-nav .nav-link:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}


body {
    background-color: white;
    color: #181818;
    font-family: 'DM Sans';
    margin: 0;
    padding: 20px;
    text-align: center; 
}

header {
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto; 
}

.feature {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

section {
    margin-top: 40px;
}

.description {
    max-width: 600px; 
    margin: 0 auto; 
}

h2 {
    margin-bottom: 10px;
}


.product-image {
    display: block;
    margin: 20px auto;
    max-width: 300px;
    height: auto; 
}


section ul {
    max-width: 600px; 
    margin: 30px auto;
    padding-left: 0; 
    list-style-type: none; 
    
}

section ul li {
    text-align: left; 
    border-bottom: 1px solid #ddd; 
    padding: 8px 0; 
    
}

section h2 {
    font-family: 'DM Sans Bold';
}

.feature h3 {
    font-size: 1.5em; 
    margin-bottom: 5px; 
    margin-top: 20px;
}

.feature p {
    font-size: 0.9em; 
    color: #555;
}

.feature-image {
    max-width: 100%; 
    height: auto; 
    margin-bottom: 0px;
    border-radius: 8px;
}

header {
    display: flex;
    justify-content:safe-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #181818; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    margin-left: -20px;
}

body {
    padding-top: 80px; 
}


.logo-image {
    max-width: 100px; 
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px; 
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline; 
}

