/* ===============================
   GLOBAL PAGE STYLING
================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    color: #333;
}

h1, h2, h3 {
    margin-top: 0;
}

a {
    text-decoration: none;
}

/* ===============================
   HEADER + NAVIGATION
================================= */

header {
    background: #2b3a42;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 70px;
    width: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    color: #fff;
    font-weight: bold;
}

nav a.active,
nav a:hover {
    text-decoration: underline;
}

/* ===============================
   HERO SECTION
================================= */

.hero {
    background: #e1e5e8;
    padding: 50px 20px;
    text-align: center;
}

.hero h2 {
    margin-bottom: 10px;
}

/* ===============================
   CONTENT SECTIONS
================================= */

.content {
    padding: 30px;
    background: #fff;
    margin: 20px;
    border-radius: 6px;
}

/* ===============================
   BUTTONS
================================= */

.button {
    display: inline-block;
    padding: 12px 18px;
    background: #2b3a42;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.button:hover {
    background: #1a2328;
}

/* ===============================
   PRICING TABLE
================================= */

.pricing {
    padding: 30px;
    background: #fff;
    margin: 20px 0;
    border-radius: 6px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

.pricing-table th {
    background: #2b3a42;
    color: #fff;
    font-weight: bold;
}

.pricing-table tr:nth-child(even) {
    background: #f7f7f7;
}

.pricing-note {
    margin-top: 15px;
    font-size: 0.95em;
    color: #333;
}

/* ===============================
   CONTACT FORM
================================= */

form {
    margin-top: 20px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 4px;
}

input[type="submit"] {
    padding: 12px 18px;
    background: #2b3a42;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #1a2328;
}

/* ===============================
   FOOTER
================================= */

footer {
    background: #2b3a42;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .logo {
        height: 60px;
    }

    .content {
        margin: 10px;
        padding: 20px;
    }
}
