* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #f2f2f2;
    border-bottom: 2px solid #ff4500;
}

/* Logo area */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    width: 400px;
    height: auto;
    display: block;
}

.logo-text {
    margin-top: -40px;
}

.logo .sub {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}

/* Navigation links */
.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff4500;
}

/* Call button */
.call-btn {
    background: #ff4500;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
}

.call-btn:hover {
    background: #cc3700;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #000, #8b0000);
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
}

.hero-buttons .btn {
    margin: 5px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* Buttons */
.primary {
    background: #ff4500;
    color: white;
}

.secondary {
    border: 2px solid #ff4500;
    color: #ff4500;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section.light {
    background: #eee;
}

/* Cards */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    border-top: 4px solid #ff4500;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

.features div {
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* Form */
.form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.form input,
.form select,
.form textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: #ff4500;
}

.form button {
    background: #ff4500;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form button:hover {
    background: #cc3700;
}

/* Footer */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

.sub-footer {
    font-size: 11px;
    margin-top: 4px;
    letter-spacing: 1px;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .logo {
        align-items: center;
    }

    .logo img {
        width: 250px;
        height: auto;
    }

    .logo .sub {
        text-align: center;
        font-size: 11px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}