/* Reset and Base Styles */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8860B;
    --light-gold: #F4E4A6;
    --dark-bg: #0a0a0a;
    --light-bg: #f9f7f2;
    --text-dark: #222222;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    gap: 8px;
    border: 2px solid var(--primary-gold);
}

.btn:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--dark-gold);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--primary-gold);
}

/* Header Styles */
header {
    background-color: var(--white);
    color: var(--dark-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
}

.logo span {
    color: var(--dark-bg);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav ul li a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.05rem;
}

.desktop-nav ul li a:hover {
    color: var(--primary-gold);
}

.desktop-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.desktop-nav ul li a:hover:after,
.desktop-nav ul li a.active:after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-bg);
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

/* Aesthetic Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    padding: 100px 30px 30px;
    transform: translateX(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.8rem;
    color: var(--primary-gold);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    padding: 5px;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu ul li a {
    display: block;
    padding: 18px 20px;
    font-size: 1.3rem;
    color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--primary-gold);
    color: var(--primary-gold);
    transform: translateX(10px);
}

.mobile-menu ul li a i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home/gidey_neon.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Booking Widget */
.booking-widget {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.booking-widget.desktop {
    margin-top: 50px;
}

.booking-widget.mobile {
    display: none;
    margin: 30px auto;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Visual Showcase */
.visual-showcase {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.showcase-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.showcase-overlay h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Page Hero */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(212, 175, 55, 0.2));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-title {
    margin-bottom: 4rem;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Specific */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    order: 1;
}

.about-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    order: 2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.room-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-info {
    padding: 30px;
}

.room-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    color: var(--text-light);
    flex-wrap: wrap;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
}

.room-features i {
    color: var(--primary-gold);
}

.room-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 15px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover:after {
    opacity: 1;
}

/* Menu Section */
.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gold);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-name h4 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.menu-item-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.4rem;
    white-space: nowrap;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-right: 20px;
    margin-top: 5px;
    min-width: 24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Google Maps */
.map-container {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

#map {
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
}

/* Vacancy Section */
.vacancy-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vacancy-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vacancy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vacancy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.vacancy-details {
    margin: 20px 0;
    color: var(--text-light);
}

.vacancy-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vacancy-details i {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 12px;
    color: var(--primary-gold);
    min-width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert i {
    font-size: 1.2rem;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 3px solid var(--primary-gold);
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation */
.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.success {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.7rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .page-hero h1 {
        font-size: 3.2rem;
    }
    
    /* Hide desktop navigation on medium screens */
    .desktop-nav {
        display: none;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Show mobile menu */
    .mobile-menu {
        display: block;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    /* Show mobile booking widget, hide desktop */
    .booking-widget.desktop {
        display: none;
    }
    
    .booking-widget.mobile {
        display: block;
    }
    
    /* ABOUT PAGE RESPONSIVE FIX - Image below text */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
        height: 300px;
    }
    
    /* Services grid responsive */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .page-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .section-padding,
    .content-section {
        padding: 70px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .rooms-grid,
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 400px;
        margin-top: 40px;
    }
    
    .booking-widget {
        padding: 20px;
        margin: 30px auto;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .vacancy-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
        .btn {
            padding: 9px 10px;
            font-size: 0.75rem;
        }
    
    .services-grid,
    .vacancy-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        padding: 15px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.3rem;
    }
    
    .mobile-menu ul li a {
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .room-features {
        gap: 10px;
    }
    
    .room-features span {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .booking-widget,
    .btn,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero,
    .page-hero {
        height: auto;
        min-height: 0;
        margin-top: 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .content-section {
        padding: 20px 0;
        break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5 {
        color: #000;
    }
}