
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #fff;
    background-color: #1a1a2e;
}

header.hero {
    background: url('images/start.webp') no-repeat center center/cover;
    height: 100vh;
    position: relative;
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

header .cta-button {
    background-color: #38b6ff;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header .cta-button:hover {
    background-color: #ff80ab;
}

main {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.card {
    flex: 1 1 30%;
    background-color: #24243e;
    color: #e4e4e4;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    min-height: 300px;
}

.card h2 {
    color: #38b6ff;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
}

.service-item {
    background-color: #1a1a2e;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Contact form styling */
#contact form {
    background-color: #24243e;
    border-radius: 15px;
    padding: 20px;
    color: #e4e4e4;
}

#contact label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #38b6ff;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: #1a1a2e;
    color: #e4e4e4;
    font-size: 16px;
}

#contact button {
    background-color: #38b6ff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #ff80ab;
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }

    .card {
        flex: 1 1 100%;
    }
}
