:root {
    --primary: #2c2f4a;      /* Deep purple */
    --accent: #6c63ff;       /* Blue-purple */
    --blue: #3a86ff;         /* Bright blue */
    --black: #222;
    --white: #fff;
    --shadow: 0 2px 8px rgba(44,47,74,0.08);
}

body {
    background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
    color: var(--black);
    font-family: 'Inter', Arial, sans-serif;
}

body.webhook-bg {
    background: 
        linear-gradient(rgba(58,134,255,0.5), rgba(108,99,255,0.5)),
        url('assets/images/background1.jpg') center center/cover no-repeat;
    min-height: 100vh;
}

header {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 2px 8px rgba(44,47,74,0.08);
    /* Remove border-bottom for seamless look */
    border-bottom: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    margin-left: 0.5rem;
    padding: 6px;
    border-radius: 16px;
    height: 60px;
    box-shadow: 0 1px 6px rgba(44,47,74,0.10);
    background: var(--white);
    display: block;
}

.navbar-caption {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 0.75rem;
    color: var(--primary);
    vertical-align: middle;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Navbar menu links */
.navbar-menu li a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #6c63ff 0%, #3a86ff 100%);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(44,47,74,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    position: relative;
}

.navbar-menu li a:hover, .navbar-menu li a:focus {
    background: linear-gradient(90deg, #3a86ff 0%, #6c63ff 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(44,47,74,0.18);
}

.btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #6c63ff 0%, #3a86ff 100%);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(44,47,74,0.12);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn:hover, .btn:focus {
    background: linear-gradient(90deg, #3a86ff 0%, #6c63ff 100%);
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 6px 24px rgba(44,47,74,0.22);
}

.container {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,47,74,0.10);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid var(--accent);
}

footer .container {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(44,47,74,0.7) 0%, rgba(108,99,255,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin: auto;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,47,74,0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.about-us {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.about-flex {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-flex img {
    max-width: 350px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.offerings {
    margin-bottom: 2rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offering {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1rem;
    text-align: center;
}

.offering img {
    width: 100%;
    max-width: 180px;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.faq {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.faq details {
    margin-bottom: 1rem;
}

.faq summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
}

footer {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 2rem 0 1rem 0;
    margin-top: 2rem;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-top: 2px solid var(--accent);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-links li a,
.social-media a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links li a:hover,
.social-media a:hover {
    color: var(--blue);
}

.social-media a {
    color: var(--white);
    margin-right: 1rem;
    text-decoration: none;
    font-weight: 500;
}

.social-media a:hover {
    color: var(--blue);
}

.update-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,47,74,0.10);
    margin-bottom: 2rem;
    padding: 2rem;
    gap: 2rem;
}

.update-image {
    max-width: 220px;
    max-height: 320px;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,47,74,0.10);
    margin-right: 2rem;
    margin-left: 0;
    display: block;
}

.update-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.update-meta {
    margin-top: 1.5rem;
}

.update-meta span {
    color: #3a86ff;
    font-weight: 500;
}

.update-card small {
    display: block;
    margin-top: 0.5rem;
    color: #888;
    font-size: 0.95em;
}

.controls, .pagination {
    background: rgba(255,255,255,0.85);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(44,47,74,0.04);
    border: 1px solid var(--accent);
}

input#search, select#sort {
    margin-right: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--blue);
    background: #fafaff;
}

.pagination button {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    font-weight: bold;
}

.pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 800px) {
    .navbar, .footer-flex, .about-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}