:root {
    --primary-color: #00aeef;
    --secondary-color: #033d52;
    --text-color: #ffffff;
    --background-color: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-color);
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-color) 100%);
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

header {
    margin-bottom: 2rem;
}

#logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service {
    flex: 1 1 200px;
    max-width: 250px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info, .social-media {
    margin-bottom: 2rem;
}

.contact-info a, .social-media a {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.contact-info a:hover, .social-media a:hover {
    color: var(--text-color);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .service {
        flex-basis: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .service {
        flex-basis: 100%;
    }

    .contact-info a, .social-media a {
        display: block;
        margin: 10px 0;
    }
}