/* --- Site Header Banner --- */

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
    background: #fdfdfd;
}

/* Logo + Title */
.branding {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    height: 80px;
    width: auto;
}

.site-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* --- Navigation --- */

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* --- Mobile Header --- */

@media (max-width: 800px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .main-nav a {
        margin-left: 0;
        margin-right: 10px;
    }
}

/* --- General Page Layout --- */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #222;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    color: #555;
}

/* --- Table Styling (Pricing Page) --- */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1rem;
}

table th,
table td {
    padding: 12px 15px;
    border: 1px solid #ccc;
}

table th {
    text-align: left;
    background: #f5f5f5;
    font-weight: 600;
}

table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* --- Homepage Layout --- */

.home-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.home-text {
    flex: 2;
}

.home-photo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.home-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 800px) {
    .home-layout {
        flex-direction: column;
    }

    .home-photo {
        justify-content: center;
        margin-top: 20px;
    }
}