* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', 'Open Sans', Arial, sans-serif;
    background: #10131a;
    color: #e6e6e6;
    line-height: 1.7;
}
a { color: #1ecbe1; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.navbar {
    background: linear-gradient(90deg, #0f2027 0%, #2c5364 100%);
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-flex { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: bold; color: #fff; }
.logo img { height: 48px; margin-right: 12px; }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links li a { color: #fff; font-weight: 500; transition: color 0.2s; }
.nav-links li a:hover { color: #ff9800; }

.hero {
    background: linear-gradient(120deg, #1ecbe1 0%, #0f2027 100%);
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 28px;
}
.btn-primary {
    background: linear-gradient(90deg, #1ecbe1 0%, #ff9800 100%);
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(30,203,225,0.12);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #ff9800 0%, #1ecbe1 100%);
}

.section { padding: 60px 0; }
.section h2 { font-size: 2.2rem; color: #1ecbe1; margin-bottom: 24px; font-weight: 700; }
.bg-gradient { background: linear-gradient(90deg, #232526 0%, #1ecbe1 100%); }
.bg-dark { background: #181c24; }

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card {
    background: #232b38;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(30,203,225,0.07);
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 320px;
    margin: 12px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(255,152,0,0.13);
}
.service-card i { color: #1ecbe1; margin-bottom: 16px; }
.service-card h3 { color: #ff9800; margin-bottom: 10px; font-size: 1.2rem; }

.license-table {
    overflow-x: auto;
    margin-top: 18px;
}
.license-table table {
    width: 100%;
    border-collapse: collapse;
    background: #232b38;
    border-radius: 12px;
    overflow: hidden;
}
.license-table th, .license-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #2c3e50;
    text-align: left;
}
.license-table th {
    background: #1ecbe1;
    color: #fff;
    font-weight: 600;
    width: 220px;
}
.license-table tr:last-child td, .license-table tr:last-child th {
    border-bottom: none;
}

.contact-flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.contact-form {
    background: #232b38;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,203,225,0.07);
    min-width: 320px;
    max-width: 400px;
    flex: 1 1 320px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: none;
    border-radius: 8px;
    background: #181c24;
    color: #fff;
    font-size: 1rem;
}
.contact-form button {
    width: 100%;
}
.social-links a {
    color: #1ecbe1;
    font-size: 1.6rem;
    margin-right: 16px;
    transition: color 0.2s;
}
.social-links a:hover { color: #ff9800; }

footer {
    background: linear-gradient(90deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
    padding: 22px 0;
    font-size: 1rem;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .services-grid { flex-direction: column; align-items: center; }
    .contact-flex { flex-direction: column; gap: 32px; }
    .footer-flex { flex-direction: column; gap: 10px; }
}
@media (max-width: 600px) {
    .hero-content h1 { font-size: 2rem; }
    .section h2 { font-size: 1.5rem; }
    .navbar { padding: 10px 0; }
    .logo img { height: 36px; }
    .nav-links { gap: 16px; font-size: 1rem; }
}