/* ==============================
   General Styles
============================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ==============================
   Header
============================== */
.site-header {
    background-color: #003366;
    color: #fff;
    padding: 10px 0;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner a.clickable-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.header-inner img {
    margin-right: 10px;
}

.header-inner h4 {
    margin: 0;
}

/* ==============================
   Navigation
============================== */
.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
    position: relative;
}

.nav-toggle .hamburger::before {
    transform: translateY(-10px);
}

.nav-toggle .hamburger::after {
    transform: translateY(7px);
}

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive navigation */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #003366;
        flex-direction: column;
        display: none;
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav a {
        margin: 10px 0;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }
}


.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
}

.comparison-table thead {
    background-color: #0073e6;
    color: white;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.comparison-table tbody tr:hover {
    background-color: #d6eaff;
    transition: background-color 0.3s;
}

.comparison-table th {
    border-bottom: 2px solid #005bb5;
    font-size: 1.1rem;
}

.comparison-table td {
    border-bottom: 1px solid #ccc;
}

/* ==============================
   Main Content
============================== */
main h1 {
    color: #003366;
}

.contact-form {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    background-color: #003366;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form .btn:hover {
    background-color: #0055a5;
}

.success {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}

.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* ==============================
   Contact Info
============================== */
.contact-info {
    background-color: #fff;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
}

.contact-info a {
    color: #003366;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ==============================
   Footer
============================== */
.site-footer {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-nav a:hover {
    text-decoration: underline;
}
