/* assets/css/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 14px;
    color: #333;
    padding: 5px 0;
}

.nav-links a.active {
    border-bottom: 2px solid #0073e6;
    color: #0073e6;
}

.quote-btn {
    background: #0073e6;
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 5%;
        width: 200px;
        border: 1px solid #ddd;
        padding: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Grid */
.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-5px);
}

/* Hero */
.hero {
    background: #e9eef5;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #0073e6;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

footer h4 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
}

footer a {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #ccc;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 10px;
}