body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #071214;
    color: white;
}

header {
    background: #061012;
    padding: 15px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo {
    width: 450px;
    max-width: 90%;
    margin-bottom: 10px;
}

.logo {
    height: 220px;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    min-height: 550px;
    background: #020b0d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 8%;
}
.hero-content {
    max-width: 760px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin-top: 0;
    font-size: 58px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 23px;
    line-height: 1.5;
}

.button {
    display: inline-block;
    background: #00a6b4;
    color: white;
    padding: 14px 24px;
    margin: 10px 10px 0 0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.button.secondary {
    background: transparent;
    border: 2px solid #00a6b4;
}

section {
    padding: 70px 8%;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #102226;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #00a6b4;
}

.card h3 {
    color: #54d7df;
}

.about {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 45px;
    align-items: center;
}

.about img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 14px;
}

.form-message {
    margin-top: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.form-message.success {
    color: #54d7df;
}

.form-message.error {
    color: #ffb4b4;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

footer {
    background: #030808;
    padding: 35px 8%;
    text-align: center;
    color: #aaa;
}

@media (max-width: 800px) {
    .cards, .about {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    nav {
        display: none;
    }
}

/* Contact form CSS starts below here */


.contact-section {
    background: #071214;
    padding: 70px 8%;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: #102226;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #00a6b4;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 6px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact-form button {
    margin-top: 20px;
    background: #00a6b4;
    color: white;
    width: 100%;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #078c99;
}

}