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

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background-color: #2d2d2d;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00aaff;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: #00aaff;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    color: #00aaff;
    margin-bottom: 1rem;
}

footer {
    background-color: #2d2d2d;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

#contact p a {
    color: #3498db; 
    text-decoration: none;
}

#contact p {
    margin-bottom: 0.2rem;
}

.logo img {
    height: 50px; /* Adjust this value based on logo's size */
    width: auto;
    display: block;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .logo img {
        height: 30px; /* Slightly smaller on mobile */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem; /* Reduced from 2rem for mobile view */
    }

    section {
        padding: 2rem 1rem;
    }

    .services-container {
        grid-template-columns: 1fr; /* Stack to 1 column on mobile */
    }

    .logo img {
        height: 30px; /* Slightly smaller on mobile */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr; /* Stack to 1 column on mobile */
    }
}