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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.site_header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.header_logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.main_container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 40px;
}

.content_wrapper {
    text-align: center;
    max-width: 800px;
    animation: fade_in 1.5s ease-out;
    margin-bottom: 60px;
}

.main_title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #a8c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.elements_section {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    animation: fade_in 2s ease-out;
}

.elements_title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #a8c0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.service_column ul {
    list-style: none;
    padding: 0;
}

.service_column li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
    position: relative;
    padding-left: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.service_column li::before {
    content: '•';
    color: #a8c0ff;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.service_column li:hover {
    transform: translateX(5px);
    color: #ffffff;
}

@keyframes fade_in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main_title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .services_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service_column {
        text-align: center;
    }

    .service_column li {
        padding-left: 0;
    }

    .service_column li::before {
        display: none;
    }

    .site_header {
        position: relative;
        justify-content: center;
    }

    .header_logo {
        width: 200px;
    }

    .main_container {
        padding-top: 40px;
    }
}