html {
    overflow-y: scroll !important;
    height: 100%;
}
body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #151a23;
    color: #f5f6fa;
    overflow-x: hidden;
}
.about, .contact {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    box-sizing: border-box;
}

section h1, section h2 {
    padding-left: 0.25em;
    padding-right: 0.25em;
    margin-top: 1rem;
}
section p, section ul, section ol {
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1.2rem;
}

/* Prevent padding inside cards or banners */
.card h3, .card p, .hero *, .service-banner *, .hero-content * {
    padding-left: 0;
    padding-right: 0;
}
.service-intro {
    padding: 1.5rem 2.5rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background: rgba(24,30,37,0.92);
    box-sizing: border-box;
}

header {
    background: #10131b;
    color: #fff;
    padding: 0;
    border-bottom: 1.5px solid #23293a;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #10131b;
}
nav .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
@media (min-width: 701px) {
    nav ul {
        display: flex !important;
    }
}

/* Mobile nav menu hidden by default */
nav .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 700px) {

/* Universal banner image fix: ensures all banners display full and uncropped */
.service-banner, .hero-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem auto;
    border-radius: 0.5rem;
    background: #23293a;
    object-fit: contain;
}

    nav ul {
        display: none !important;
    }
    nav ul.open {
        display: flex !important;
    }

    nav {
        position: relative;
    }
    nav .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 201;
        background: #23293a;
        border-radius: 8px;
        padding: 0.2rem 0.8rem;
        font-size: 2.1rem;
        border: 2px solid #444;
        box-shadow: 0 2px 8px #0006;
    }
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(16,19,27,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.2rem;
        z-index: 200;
        box-shadow: none;
        transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
        transform: translateY(-100%);
    }
    nav ul.open {
        display: flex;
        transform: translateY(0);
    }
    nav ul li {
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        font-size: 1.3rem;
        padding: 1rem 0;
        width: 100%;
        display: block;
        color: #fff;
        border-bottom: 1px solid #23293a;
        transition: background 0.18s, color 0.18s;
    }
    nav ul li a:hover {
        background: #222a38;
        color: #ffb347;
    }
}


nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffb347;
}
.hero {
    background: linear-gradient(120deg, #23293a 60%, #ffb347 100%);
    color: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 500px !important;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px !important;
    min-height: 500px !important;
}
.hero-slide {
    height: 500px !important;
    min-height: 500px !important;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.hero-slide img.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 36px 36px;
    max-height: 480px;
}
.hero-content {
    position: absolute;
    left: 0; bottom: 0; width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    background: linear-gradient(0deg,rgba(30,34,44,0.88) 60%,rgba(30,34,44,0.1) 100%);
    padding: 3.5rem 1rem 2rem 1rem;
    min-height: 220px;
    box-sizing: border-box;
}
.hero-content h1 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px #10131b;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px #10131b;
}
.hero-content .cta-btn {
    margin-bottom: 2.5rem;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 0 0 36px 36px;
    margin: 0 auto 0 auto;
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    overflow-x: hidden;
}
@media (max-width: 900px) {
    .hero {
        height: 270px;
    }
    .hero-slider {
        min-height: 270px;
    }
    .hero-img {
        height: 270px;
        border-radius: 0 0 24px 24px;
        min-width: 100%;
    }
    .hero-slide {
        height: 100%;
    }
}
.hero h1, .hero p, .hero .cta-btn {
    position: relative;
    z-index: 2;
}
.hero h1 {
    margin-top: -180px;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px #10131b;
}
.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px #10131b;
}
.hero .cta-btn {
    box-shadow: 0 2px 8px #10131b22;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
.cta-btn, .btn-primary {
    background: #ffb347;
    color: #222;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.cta-btn:hover, .btn-primary:hover {
    background: #fff;
    color: #2d3a5a;
}
.services, .services-section {
    padding: 3rem 2rem;
    background: #181e29;
    text-align: center;
    color: #f5f6fa;
}
.services h2, .services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
.service-cards, .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.card, .service-card {
    background: #222a38;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 250px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card img, .service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.card h3, .service-card h3 {
    margin: 0.5rem 0 0.7rem 0;
}
.card p, .service-card p {
    font-size: 1rem;
    color: #e0e6ed;
    margin-bottom: 1rem;
}
.card .learn-more, .btn-secondary {
    background: #ffb347;
    color: #222;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #10131b22;
    display: inline-block;
}
.card .learn-more:hover, .btn-secondary:hover {
    background: #fff;
    color: #2d3a5a;
}
.btn-text {
    color: #ffb347;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.btn-text:hover {
    color: #fff;
}

/* Blog posts styling */
.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.post-card {
    background: #222a38;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
    padding: 2rem;
    width: 300px;
    transition: transform 0.2s;
}
.post-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}
.post-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.post-card h3 a:hover {
    color: #ffb347;
}
.post-meta {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
}
.view-all {
    margin-top: 2rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #23293a;
    border-radius: 8px;
    background: #181e29;
    color: #f5f6fa;
    font-size: 1rem;
    box-sizing: border-box;
}

.checkbox-group {
    background: #181e29;
    border: 1px solid #23293a;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    color: #f5f6fa;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: #ffb347;
    width: 16px;
    height: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #ffb347;
    box-shadow: 0 0 0 2px rgba(255, 179, 71, 0.2);
}

.contact-form .cta-btn {
    width: 100%;
    cursor: pointer;
}

/* Footer styles */
footer {
    background-color: #181e25;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 1px solid #2d3a5a;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 1.5rem;
}
.footer-section {
    flex: 1 1 200px;
    margin-bottom: 2rem;
}
.footer-section h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffb347;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2d3a5a;
}
.footer-section p {
    color: #a0a7b9;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-section ul, 
.footer-section .footer-links {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}
.footer-section ul li {
    margin-bottom: 0.7rem;
}
.footer-section ul li a {
    color: #a0a7b9;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}
.footer-section ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a5572;
    transition: color 0.2s, transform 0.2s;
}
.footer-section ul li a:hover {
    color: #ffb347;
}
.footer-section ul li a:hover:before {
    color: #ffb347;
    transform: translateX(3px);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3a5a;
    font-size: 0.9rem;
    color: #a0a7b9;
}

/* Make footer responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        flex-basis: 100%;
        margin-bottom: 1rem;
    }
}

/* Banner images for hero and services */
.hero-img, .service-banner {
    width: 100%;
    max-width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 0 0 28px 28px;
    margin: 0 0 2rem 0;
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    overflow-x: hidden;
}
@media (max-width: 900px) {
    .service-banner {
        height: 150px;
        border-radius: 0 0 18px 18px;
        min-width: 100%;
    }
}

/* Packages section */
.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.package {
    background: #23293a;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid #23293a;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.package.popular {
    border: 2px solid #ffb347;
    box-shadow: 0 8px 32px rgba(255,179,71,0.18);
    transform: scale(1.04);
    background: #282f44;
}
.package h3 {
    margin: 0.5rem 0 0.7rem 0;
    font-size: 1.3rem;
    color: #ffb347;
}
.package ul {
    padding: 0;
    margin: 0 0 1rem 0;
    list-style: none;
    text-align: left;
}
.package ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #e5e6ed;
    padding-left: 1.2em;
    position: relative;
}
.package ul li:before {
    content: '✓';
    color: #ffb347;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}
.package .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffb347;
    margin-bottom: 1rem;
}
.package .cta-btn {
    width: 100%;
    margin-top: auto;
}

/* Contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    background: #181e29;
    color: #f5f6fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.17);
}
.contact-form input,
.contact-form textarea {
    border: 1px solid #23293a;
    background: #23293a;
    color: #fff;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1rem;
    resize: vertical;
}
.contact-form button.cta-btn {
    background: #2d3a5a;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.contact-form button.cta-btn:hover {
    background: #ffb347;
    color: #222;
}

/* Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
}

/* Page content specific styles */
.page-content {
    background: #181e29;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
}

/* Full-width content styles */
.full-width-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
}
.breadcrumb {
    color: #ccc;
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: #ffb347;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.page-body {
    line-height: 1.6;
}
.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Blog styling */
.blog-content {
    background: #181e29;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
}
.post-content {
    line-height: 1.6;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}
.categories a {
    color: #ffb347;
    text-decoration: none;
}
.categories a:hover {
    text-decoration: underline;
}

/* Blog Archive Page */
.blog-archive {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-archive .page-header {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.blog-archive .page-header h1 {
    font-size: 2.2rem;
    margin-top: 0;
    color: #ffb347;
    border-bottom: 1px solid #23293a;
    padding-bottom: 0.8rem;
}

.blog-archive .category-description {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #e0e6ed;
}

.blog-archive .archive-posts {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-archive .post-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blog-archive .post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-archive .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-archive .post-image:hover img {
    transform: scale(1.05);
}

.blog-archive .post-content h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.blog-archive .post-content h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-archive .post-content h2 a:hover {
    color: #ffb347;
}

.blog-archive .post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #aab2c0;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-archive .post-excerpt {
    color: #e0e6ed;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-sidebar {
    grid-column: 2;
}

.sidebar-section {
    background: #222a38;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: #ffb347;
    font-size: 1.3rem;
    border-bottom: 1px solid #2d3a5a;
    padding-bottom: 0.8rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #2d3a5a25;
    padding: 0.5rem 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #e0e6ed;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.category-list li a:hover {
    color: #ffb347;
}

.category-list li a.active {
    color: #ffb347;
    font-weight: bold;
}

.category-list .count {
    background: #2d3a5a;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    color: #e0e6ed;
}

.no-posts {
    background: #222a38;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #aab2c0;
}

@media (max-width: 900px) {
    .blog-archive {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        grid-column: 1;
    }
}

@media (max-width: 900px) {
    .service-cards, .services-grid {
        flex-direction: column;
        align-items: center;
    }
    .card, .service-card {
        width:75%;
        max-width: 350px;
        border-radius: 16px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-wrapper {
        text-align: center;
        margin: 1rem 0;
    }
    .packages {
        flex-direction: column;
        align-items: center;
    }
    .package {
        width: 80%;
        max-width: 350px;
        border-radius: 16px !important;
    }
    
    .posts-grid {
        flex-direction: column;
        align-items: center;
    }
    .post-card {
        width: 90%;
        max-width: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
html {
    overflow-y: scroll !important;
    height: 100%;
}
body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #151a23;
    color: #f5f6fa;
    overflow-x: hidden;
}
.about, .contact {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    box-sizing: border-box;
}

section h1, section h2 {
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin-top: 1.5rem;
}
section p, section ul, section ol {
    padding-left: 1.5em;
    padding-right: 1.5em;
    margin-bottom: 1.2rem;
}

/* Prevent padding inside cards or banners */
.card h3, .card p, .hero *, .service-banner *, .hero-content * {
    padding-left: 0;
    padding-right: 0;
}
.service-intro {
    padding: 1.5rem 2.5rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background: rgba(24,30,37,0.92);
    box-sizing: border-box;
}

header {
    background: #10131b;
    color: #fff;
    padding: 0;
    border-bottom: 1.5px solid #23293a;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #10131b;
}
nav .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
@media (min-width: 701px) {
    nav ul {
        display: flex !important;
    }
}

/* Mobile nav menu hidden by default */
nav .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 700px) {

/* Universal banner image fix: ensures all banners display full and uncropped */
.service-banner, .hero-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem auto;
    border-radius: 0.5rem;
    background: #23293a;
    object-fit: contain;
}

    nav ul {
        display: none !important;
    }
    nav ul.open {
        display: flex !important;
    }

    nav {
        position: relative;
    }
    nav .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 201;
        background: #23293a;
        border-radius: 8px;
        padding: 0.2rem 0.8rem;
        font-size: 2.1rem;
        border: 2px solid #444;
        box-shadow: 0 2px 8px #0006;
    }
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(16,19,27,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.2rem;
        z-index: 200;
        box-shadow: none;
        transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
        transform: translateY(-100%);
    }
    nav ul.open {
        display: flex;
        transform: translateY(0);
    }
    nav ul li {
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        font-size: 1.3rem;
        padding: 1rem 0;
        width: 100%;
        display: block;
        color: #fff;
        border-bottom: 1px solid #23293a;
        transition: background 0.18s, color 0.18s;
    }
    nav ul li a:hover {
        background: #222a38;
        color: #ffb347;
    }
}


nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffb347;
}
.hero {
    background: linear-gradient(120deg, #23293a 60%, #ffb347 100%);
    color: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 500px !important;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px !important;
    min-height: 500px !important;
}
.hero-slide {
    height: 500px !important;
    min-height: 500px !important;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.hero-slide img.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 36px 36px;
    max-height: 480px;
}
.hero-content {
    position: absolute;
    left: 0; bottom: 0; width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    background: linear-gradient(0deg,rgba(30,34,44,0.88) 60%,rgba(30,34,44,0.1) 100%);
    padding: 3.5rem 1rem 2rem 1rem;
    min-height: 220px;
    box-sizing: border-box;
}
.hero-content h1 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px #10131b;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px #10131b;
}
.hero-content .cta-btn {
    margin-bottom: 2.5rem;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 0 0 36px 36px;
    margin: 0 auto 0 auto;
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    overflow-x: hidden;
}
@media (max-width: 900px) {
    .hero {
        height: 270px;
    }
    .hero-slider {
        min-height: 270px;
    }
    .hero-img {
        height: 270px;
        border-radius: 0 0 24px 24px;
        min-width: 100%;
    }
    .hero-slide {
        height: 100%;
    }
}
.hero h1, .hero p, .hero .cta-btn {
    position: relative;
    z-index: 2;
}
.hero h1 {
    margin-top: -180px;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px #10131b;
}
.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px #10131b;
}
.hero .cta-btn {
    box-shadow: 0 2px 8px #10131b22;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
.cta-btn, .btn-primary {
    background: #ffb347;
    color: #222;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.cta-btn:hover, .btn-primary:hover {
    background: #fff;
    color: #2d3a5a;
}
.services, .services-section {
    padding: 3rem 2rem;
    background: #181e29;
    text-align: center;
    color: #f5f6fa;
}
.services h2, .services-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
.service-cards, .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.card, .service-card {
    background: #222a38;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 250px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card img, .service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.card h3, .service-card h3 {
    margin: 0.5rem 0 0.7rem 0;
}
.card p, .service-card p {
    font-size: 1rem;
    color: #e0e6ed;
    margin-bottom: 1rem;
}
.card .learn-more, .btn-secondary {
    background: #ffb347;
    color: #222;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #10131b22;
    display: inline-block;
}
.card .learn-more:hover, .btn-secondary:hover {
    background: #fff;
    color: #2d3a5a;
}
.btn-text {
    color: #ffb347;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.btn-text:hover {
    color: #fff;
}

/* Blog posts styling */
.posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.post-card {
    background: #222a38;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
    padding: 2rem;
    width: 300px;
    transition: transform 0.2s;
}
.post-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}
.post-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.post-card h3 a:hover {
    color: #ffb347;
}
.post-meta {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
}
.view-all {
    margin-top: 2rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #23293a;
    border-radius: 8px;
    background: #181e29;
    color: #f5f6fa;
    font-size: 1rem;
    box-sizing: border-box;
}

.checkbox-group {
    background: #181e29;
    border: 1px solid #23293a;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    color: #f5f6fa;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: #ffb347;
    width: 16px;
    height: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #ffb347;
    box-shadow: 0 0 0 2px rgba(255, 179, 71, 0.2);
}

.contact-form .cta-btn {
    width: 100%;
    cursor: pointer;
}

/* Footer styles */
footer {
    background-color: #181e25;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 1px solid #2d3a5a;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 1.5rem;
}
.footer-section {
    flex: 1 1 200px;
    margin-bottom: 2rem;
}
.footer-section h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffb347;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2d3a5a;
}
.footer-section p {
    color: #a0a7b9;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-section ul, 
.footer-section .footer-links {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}
.footer-section ul li {
    margin-bottom: 0.7rem;
}
.footer-section ul li a {
    color: #a0a7b9;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}
.footer-section ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a5572;
    transition: color 0.2s, transform 0.2s;
}
.footer-section ul li a:hover {
    color: #ffb347;
}
.footer-section ul li a:hover:before {
    color: #ffb347;
    transform: translateX(3px);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3a5a;
    font-size: 0.9rem;
    color: #a0a7b9;
}

/* Make footer responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        flex-basis: 100%;
        margin-bottom: 1rem;
    }
}

/* Banner images for hero and services */
.hero-img, .service-banner {
    width: 100%;
    max-width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 0 0 28px 28px;
    margin: 0 0 2rem 0;
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    overflow-x: hidden;
}
@media (max-width: 900px) {
    .service-banner {
        height: 150px;
        border-radius: 0 0 18px 18px;
        min-width: 100%;
    }
}

/* Packages section */
.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.package {
    background: #23293a;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid #23293a;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.package.popular {
    border: 2px solid #ffb347;
    box-shadow: 0 8px 32px rgba(255,179,71,0.18);
    transform: scale(1.04);
    background: #282f44;
}
.package h3 {
    margin: 0.5rem 0 0.7rem 0;
    font-size: 1.3rem;
    color: #ffb347;
}
.package ul {
    padding: 0;
    margin: 0 0 1rem 0;
    list-style: none;
    text-align: left;
}
.package ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #e5e6ed;
    padding-left: 1.2em;
    position: relative;
}
.package ul li:before {
    content: '✓';
    color: #ffb347;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}
.package .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffb347;
    margin-bottom: 1rem;
}
.package .cta-btn {
    width: 100%;
    margin-top: auto;
}

/* Contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    background: #181e29;
    color: #f5f6fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.17);
}
.contact-form input,
.contact-form textarea {
    border: 1px solid #23293a;
    background: #23293a;
    color: #fff;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1rem;
    resize: vertical;
}
.contact-form button.cta-btn {
    background: #2d3a5a;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.contact-form button.cta-btn:hover {
    background: #ffb347;
    color: #222;
}

/* Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Page content specific styles */
.page-content {
    background: #181e29;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
}
.breadcrumb {
    color: #ccc;
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: #ffb347;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.page-body {
    line-height: 1.6;
}
.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Blog styling */
.blog-content {
    background: #181e29;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
}
.post-content {
    line-height: 1.6;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}
.categories a {
    color: #ffb347;
    text-decoration: none;
}
.categories a:hover {
    text-decoration: underline;
}

/* Blog Archive Page */
.blog-archive {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-archive .page-header {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.blog-archive .page-header h1 {
    font-size: 2.2rem;
    margin-top: 0;
    color: #ffb347;
    border-bottom: 1px solid #23293a;
    padding-bottom: 0.8rem;
}

.blog-archive .category-description {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #e0e6ed;
}

.blog-archive .archive-posts {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-archive .post-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blog-archive .post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-archive .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-archive .post-image:hover img {
    transform: scale(1.05);
}

.blog-archive .post-content h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.blog-archive .post-content h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-archive .post-content h2 a:hover {
    color: #ffb347;
}

.blog-archive .post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #aab2c0;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-archive .post-excerpt {
    color: #e0e6ed;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-sidebar {
    grid-column: 2;
}

.sidebar-section {
    background: #222a38;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: #ffb347;
    font-size: 1.3rem;
    border-bottom: 1px solid #2d3a5a;
    padding-bottom: 0.8rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #2d3a5a25;
    padding: 0.5rem 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #e0e6ed;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.category-list li a:hover {
    color: #ffb347;
}

.category-list li a.active {
    color: #ffb347;
    font-weight: bold;
}

.category-list .count {
    background: #2d3a5a;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    color: #e0e6ed;
}

.no-posts {
    background: #222a38;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #aab2c0;
}

@media (max-width: 900px) {
    .blog-archive {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        grid-column: 1;
    }
}

@media (max-width: 900px) {
    .service-cards, .services-grid {
        flex-direction: column;
        align-items: center;
    }
    .card, .service-card {
        width:75%;
        max-width: 350px;
        border-radius: 16px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-wrapper {
        text-align: center;
        margin: 1rem 0;
    }
    .packages {
        flex-direction: column;
        align-items: center;
    }
    .package {
        width: 80%;
        max-width: 350px;
        border-radius: 16px !important;
    }
    
    .posts-grid {
        flex-direction: column;
        align-items: center;
    }
    .post-card {
        width: 90%;
        max-width: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.card {
    background: #23293a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card h3 {
    margin: 1rem;
    color: #ffb347;
}
.card p {
    margin: 0 1rem 1rem;
    color: #e5e6ed;
}
.learn-more {
    display: inline-block;
    margin: 0.5rem 1rem 1.5rem;
    color: #ffb347;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}
.learn-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}
.learn-more:hover:after {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to right, rgba(35, 41, 58, 0.9), rgba(35, 41, 58, 0.4));
    color: white;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 60%;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 60%;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
    .hero h1 {
        font-size: 1.8rem;
        max-width: 100%;
    }
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    .service-cards {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}/* Blog Card Styles */
.blog-post-card {
    background-color: #1f2833; /* Slightly lighter than main bg for contrast */
    border: 1px solid #2c3a4a;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.blog-post-card .card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.blog-post-card .card-body {
    color: #c5c6c7;
}

.blog-post-card .card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-card .card-title a:hover {
    color: #ffb347;
}

.blog-post-card .btn-primary {
    background-color: #ffb347;
    border-color: #ffb347;
    color: #151a23;
    font-weight: bold;
}

.blog-post-card .btn-primary:hover {
    background-color: #e6a03f;
    border-color: #e6a03f;
}

/* Sidebar Styles */
.blog-sidebar .card {
    background-color: #1f2833;
    border: 1px solid #2c3a4a;
}

.blog-sidebar .card-header {
    background-color: #151a23;
    color: #ffb347;
    font-weight: bold;
    border-bottom: 1px solid #2c3a4a;
}

.blog-sidebar .list-unstyled a {
    color: #c5c6c7;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-sidebar .list-unstyled a:hover {
    color: #ffb347;
}

/* Breadcrumb and Pagination */
.breadcrumb {
    background-color: transparent;
    padding: 0 0 1rem 0;
}

.breadcrumb a {
    color: #ffb347;
}

.pagination .page-item .page-link {
    background-color: #1f2833;
    border-color: #2c3a4a;
    color: #c5c6c7;
}

.pagination .page-item.active .page-link {
    background-color: #ffb347;
    border-color: #ffb347;
    color: #151a23;
}

.pagination .page-item.disabled .page-link {
    background-color: #1f2833;
    border-color: #2c3a4a;
    color: #6c757d;
}
/* Single Post Styles */
.single-post-container .post-content-wrapper {
    background-color: #1f2833;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2c3a4a;
}

.single-post-container .post-title {
    color: #ffffff;
    font-weight: bold;
}

.single-post-container .post-meta {
    font-size: 0.9rem;
}

.single-post-container .post-meta a {
    color: #ffb347;
    text-decoration: none;
}

.single-post-container .post-meta a:hover {
    text-decoration: underline;
}

.single-post-container .post-body {
    color: #c5c6c7;
    line-height: 1.8;
}

.single-post-container .post-body h2, 
.single-post-container .post-body h3, 
.single-post-container .post-body h4 {
    color: #ffffff;
    margin-top: 1.5em;
}

.single-post-container .post-body a {
    color: #ffb347;
}

.single-post-container .post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
