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

header {
    background-color: #1a1a1a;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-big {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: stretch;
    font-size: 5rem;
    height: 10rem;
    filter: brightness(0) invert(1);
}

.logo-big img {
    height: 10rem;
    filter: brightness(0) invert(1);
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
}

.hero-section {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: #e0e0e0;
    text-align: center;
    padding: 4rem;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
}

.cta-buttons .btn {
    background-color: #ff6b6b;
    color: #e0e0e0;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-buttons .btn:hover {
    background-color: #ff3b3b;
}

.features-section, .product-highlights-section, .about-section {
    padding: 50px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

.features-grid, .product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.feature-item, .product-item {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-x: hidden;
}

.feature-item img, .product-item img {
    height: 50px;
    margin-bottom: 10px;
}

footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 20px;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    height: 30px;
}

.about-section {
    padding-left: 20rem;
    padding-right: 20rem;
}

/* Basic link styling */
a {
    color: #ffff; /* Replace with your desired color */
    text-decoration: none; /* Removes underline */
}

/* Link hover state */
a:hover {
    color: #aaaaaa; /* Replace with your desired hover color */
    text-decoration: underline; /* Adds underline on hover */
}

/* Visited links */
a:visited {
    color: #cfcbcb; /* Replace with your desired visited link color */
}

/* Active links */
a:active {
    color: #d2d0d0; /* Replace with your desired active link color */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero-section {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .features-section, .product-highlights-section, .about-section {
        padding: 30px 10px;
    }

    .features-grid, .product-grid {
        flex-direction: column;
        gap: 10px;
    }

    .feature-item, .product-item {
        width: 100%;
        box-shadow: none;
    }

    .about-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo-big {
        font-size: 3rem;
        height: 6rem;
    }

    .logo-big img {
        height: 6rem;
    }

    .logo img {
        height: 30px;
    }

    .cta-buttons .btn {
        padding: 8px 16px;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 0.875em;
    }

    .cta-buttons .btn {
        padding: 6px 12px;
        margin: 5px;
    }

    .features-grid, .product-grid {
        flex-direction: column;
        gap: 10px;
    }

    .logo-big {
        font-size: 2rem;
        height: 4rem;
    }

    .logo-big img {
        height: 4rem;
    }

    .logo img {
        height: 20px;
    }

    .feature-item, .product-item {
        padding: 10px;
    }

    .features-section, .product-highlights-section, .about-section {
        padding: 20px 5px;
    }
}
