/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
    line-height: 1.4;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.flag {
    width: 30px;
    height: 20px;
    cursor: pointer;
    border-radius: 2px;
}

.accessibility-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 30px;
    width: auto;
    display: block;
}

.logo-mobile {
    display: none;
}

.logo-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-icon .stripe {
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, #FFD700 33%, #FF0000 33%, #FF0000 66%, #000 66%);
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    font-size: 11px;
    line-height: 1.3;
    color: #666;
    margin: 0;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    justify-content: center;
}

.main-nav ul ul{
    gap: 0;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #c41e3a;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c41e3a;
}

/* Submenu Styles */
.main-nav ul {
    position: relative;
}

.main-nav li {
    position: relative;
}

/* Arrow indicator for menu items with submenu */
.main-nav li.menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s;
}

.main-nav .sub-menu li.menu-item-has-children > a::after {
    content: '►';
    position: absolute;
    right: 15px;
    top: 50%;
  transform: translateY(-50%);
}

.main-nav .sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
    margin-top: 10px;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    display: block;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.main-nav .sub-menu li:last-child {
    border-bottom: none;
}

.main-nav .sub-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background-color 0.2s, color 0.2s;
}

.main-nav .sub-menu a:hover {
    background-color: #f5f5f5;
    color: #c41e3a;
}

.main-nav .sub-menu a::after {
    display: none;
}

/* Nested Submenu (Dropdown in Dropdown) - Shows on hover to the right */
.main-nav .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 0;
}

.main-nav .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.main-nav .sub-menu .sub-menu li {
    padding-left: 0;
}

.main-nav .sub-menu .sub-menu a {
    padding: 12px 20px;
}

.main-nav .sub-menu li {
    position: relative;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 25%),
                radial-gradient(circle at 80% 0%, rgba(196, 30, 58, 0.15), transparent 35%),
                rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1200;
    padding: 20px;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay__content {
    position: relative;
    width: min(900px, 100%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: white;
}

.search-overlay__close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.search-overlay__close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.15);
}

.search-overlay__form {
    width: 100%;
}

.search-overlay__field {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 16px 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.search-overlay__field:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.search-overlay__field svg {
    color: white;
}

.search-overlay__field input {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    width: 100%;
    outline: none;
}

.search-overlay__field input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-overlay__submit {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-overlay__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.search-overlay__hint {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

body.search-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .search-overlay__field {
        grid-template-columns: 24px 1fr auto;
        gap: 10px;
        padding: 14px 16px;
    }

    .search-overlay__field input {
        font-size: 18px;
    }

    .search-overlay__submit {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
        padding: 20px 0;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .main-nav li {
        list-style: none;
        border-bottom: 1px solid #eee;
        margin: 0;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 18px 25px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        transition: background-color 0.2s, color 0.2s;
    }

    .main-nav a:hover {
        background-color: #f5f5f5;
        color: #c41e3a;
    }

    .main-nav a.active::after {
        display: none;
    }

    .main-nav li.current-menu-item > a,
    .main-nav li.current_page_item > a,
    .main-nav a.active {
        color: #c41e3a;
        font-weight: 700;
        background-color: #fff5f5;
    }

    /* Mobile Submenu Styles */
    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background-color: #f9f9f9;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        flex-direction: column;
        margin-top: 0;
    }

    .main-nav li.menu-item-has-children.active > .sub-menu {
        max-height: 1000px;
    }

    .main-nav .sub-menu li.menu-item-has-children.active > .sub-menu {
        max-height: 800px;
    }

    .main-nav .sub-menu li {
        display: block;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .main-nav .sub-menu a {
        padding: 14px 25px 14px 35px;
        font-size: 14px;
        background-color: #f9f9f9;
        color: #333;
    }

    .main-nav .sub-menu a:hover {
        background-color: #f0f0f0;
        color: #c41e3a;
    }

    .main-nav .sub-menu li:last-child {
        border-bottom: none;
    }

    .main-nav .sub-menu .sub-menu {
        background-color: #f0f0f0;
        display: flex;
        flex-direction: column;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav .sub-menu .sub-menu li {
        display: block;
    }

    .main-nav .sub-menu .sub-menu a {
        padding-left: 50px;
        background-color: #f0f0f0;
    }

    /* Mobile menu arrows */
    .main-nav li.menu-item-has-children > a {
        position: relative;
        padding-right: 45px;
    }

    .main-nav li.menu-item-has-children > a::after {
        content: '▼';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s;
    }

    .main-nav li.menu-item-has-children.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .main-nav .sub-menu li.menu-item-has-children > a::after {
        content: '▼';
        right: 20px;
    }

    .main-nav .sub-menu li.menu-item-has-children.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .search-btn {
        order: -1;
    }

    .header-content {
        position: relative;
    }

    .logo {
        flex: 1;
    }
}

/* Hero Slider Section */
.hero-slider {
    padding: 40px 0;
}

.slider-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    margin-bottom: 20px;
}

.slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}

.slide:hover {
    transform: scale(1.02);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide.large {
    grid-row: 1 / 3;
    min-height: 500px;
}

.slide.medium {
    min-height: 240px;
}

.slide.small {
    min-height: 240px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    color: white;
}

.badge {
    display: inline-block;
    background-color: #c41e3a;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.slide-content h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.archive-link {
    display: inline-block;
    color: #c41e3a;
    font-weight: 500;
    margin-top: 15px;
    transition: text-decoration 0.3s;
}

.archive-link:hover {
    text-decoration: underline;
}

/* Recommended Section */
.recommended {
    padding: 50px 0;
    background-color: white;
}

.recommended h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.recommended-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.card-image {
    position: relative;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image.dark {
    background-color: #2a2a2a;
    color: white;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-logo {
    font-size: 32px;
    font-weight: 700;
    color: #c41e3a;
}

.card-image h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    line-height: 1.4;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
    padding: 20px;
}

.overlay-text h3 {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.card-content {
    padding: 15px;
    background-color: white;
}

.card-content h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

/* Media Products Section */
.media-products {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.media-products h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    overflow-x: auto;
}

.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

.product-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* Calendar Section */
.calendar {
    padding: 50px 0;
    background-color: white;
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.calendar-header h2 {
    font-size: 32px;
    font-weight: 400;
    text-transform: lowercase;
    margin: 0;
    color: #333;
}

.nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 32px;
    color: #333;
    padding: 10px 20px;
    transition: color 0.3s;
}

.nav-btn:hover {
    color: #c41e3a;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
}

.day-header {
    text-align: center;
    font-weight: 600;
    padding: 15px 10px;
    font-size: 13px;
    color: #666;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-transform: lowercase;
}

.day-header:last-child {
    border-right: none;
}

.day {
    min-height: 120px;
    padding: 10px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    position: relative;
    cursor: default;
}

.day:nth-child(7n) {
    border-right: none;
}

.day.empty {
    background-color: #f5f5f5;
}

.day-number {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.day.has-event {
    background-color: #000;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.day.has-event .day-number {
    color: white;
}

.day.has-event:hover {
    background-color: #333;
}

.event-indicator {
    margin-top: 5px;
}

.event-title {
    font-size: 11px;
    line-height: 1.4;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Event Tooltip */
.event-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 2px solid #c41e3a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 350px;
    max-width: 90vw;
    pointer-events: auto;
}

.event-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #c41e3a;
}

.event-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
}

.day.has-event:hover .event-tooltip,
.event-tooltip:hover {
    display: block;
    animation: tooltipFadeIn 0.3s ease-in;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.event-tooltip 
{
    color: #333;
}
.event-tooltip h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.event-datetime {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.event-organizer,
.event-location {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #555;
}

.event-link {
    display: inline-block;
    color: #4169E1;
    text-decoration: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #c41e3a;
    font-size: 13px;
    transition: color 0.3s;
}

.event-link:hover {
    color: #2952CC;
    text-decoration: underline;
}

/* Partners, Members, Sponsors Sections */
.partners,
.members,
.sponsors {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.members {
    background-color: white;
}

.sponsors {
    background-color: #f5f5f5;
}

.partners h2,
.members h2,
.sponsors h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.partners-logos,
.members-logos,
.sponsors-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partners-logos img,
.members-logos img,
.sponsors-logos img {
    width: 100%;
    max-width: 180px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    cursor: pointer;
}

.partners-logos img:hover,
.members-logos img:hover,
.sponsors-logos img:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-left h3,
.footer-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-left p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media a {
    color: white;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #c41e3a;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #999;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .slider-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slide.large {
        grid-column: 1 / -1;
    }

    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
        order: 3;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    .slider-grid {
        grid-template-columns: 1fr;
    }

    .slide.large {
        min-height: 300px;
    }

    .recommended-grid {
        grid-template-columns: 1fr;
    }

    .products-slider {
        grid-template-columns: 1fr;
    }

    .day {
        min-height: 80px;
        padding: 5px;
    }

    .day-number {
        font-size: 12px;
    }

    .event-title {
        font-size: 9px;
        -webkit-line-clamp: 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 24px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .slide-content h2 {
        font-size: 18px;
    }

    .slide-content h3 {
        font-size: 12px;
    }

    .calendar-grid {
        gap: 4px;
    }

    .day {
        padding: 8px 4px;
        font-size: 12px;
    }
}

/* Archive Page Styles */
.archive-header {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.archive-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.archive-header p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Categories Filter */
.categories-filter {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover {
    border-color: #c41e3a;
    color: #c41e3a;
}

.filter-tab.active {
    background-color: #c41e3a;
    border-color: #c41e3a;
    color: white;
}

/* Archive Content */
.archive-content {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.archive-post {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.archive-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.post-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 250px;
}

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

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

.post-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #c41e3a;
    color: white;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.post-date,
.post-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.post-content h3 a {
    color: #333;
    transition: color 0.3s;
}

.post-content h3 a:hover {
    color: #c41e3a;
}

.post-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #c41e3a;
    font-weight: 500;
    font-size: 14px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.pagination-btn {
    background-color: white;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #c41e3a;
    color: #c41e3a;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    background-color: white;
    border: 2px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.page-number:hover {
    border-color: #c41e3a;
    color: #c41e3a;
}

.page-number.active {
    background-color: #c41e3a;
    border-color: #c41e3a;
    color: white;
}

/* Single Post Styles */
.breadcrumbs {
    background-color: #f5f5f5;
    padding: 15px 0;
}

.breadcrumbs nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #c41e3a;
}

.breadcrumbs span:last-child {
    color: #333;
    font-weight: 500;
}

.single-post:not(body) {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.post-main {
    background-color: white;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-header {
    margin-bottom: 40px;
}

.post-category {
    display: inline-block;
    background-color: #c41e3a;
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.post-meta-single {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item svg {
    color: #c41e3a;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content-body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.post-content-body .lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.post-content-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.post-content-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.post-content-body p {
    margin-bottom: 20px;
}

.post-content-body ul,
.post-content-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.post-content-body li {
    margin-bottom: 10px;
}

.post-content-body blockquote {
    border-left: 4px solid #c41e3a;
    background-color: #f9f9f9;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
}

.post-content-body blockquote p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.post-content-body blockquote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: #999;
    margin-top: 10px;
}

.post-image-inline {
    margin: 40px 0;
}

.post-image-inline img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.image-caption {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.tag-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.tag:not(body) {
    background-color: #f5f5f5;
    color: #666;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s;
}

.tag:not(body):hover {
    background-color: #c41e3a;
    color: white;
}

/* Share Buttons */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.share-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background-color: #0d65d9;
}

.share-btn.twitter {
    background-color: #000;
    color: white;
}

.share-btn.twitter:hover {
    background-color: #333;
}

.share-btn.linkedin {
    background-color: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background-color: #005582;
}

.share-btn.email {
    background-color: #666;
    color: white;
}

.share-btn.email:hover {
    background-color: #444;
}

/* Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Author Widget */
.author-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #c41e3a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.author-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.author-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-content h4 a {
    color: #333;
    transition: color 0.3s;
}

.recent-post-content h4 a:hover {
    color: #c41e3a;
}

.recent-post-date {
    font-size: 12px;
    color: #999;
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.categories-list li {
    border-bottom: 1px solid #f0f0f0;
}

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

.categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: #c41e3a;
}

.categories-list span {
    color: #999;
    font-size: 13px;
}

/* Newsletter Widget */
.newsletter-widget p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #c41e3a;
}

.newsletter-form button {
    background-color: #c41e3a;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #a01729;
}

/* Related Posts */
.related-posts {
    padding: 50px 0;
    background-color: white;
}

.related-posts h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive Archive & Single Post */
@media (max-width: 992px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-wrapper {
        grid-template-columns: 1fr;
    }

    .post-main {
        padding: 30px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .archive-header h1 {
        font-size: 32px;
    }

    .archive-header p {
        font-size: 16px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        justify-content: flex-start;
    }

    .post-main {
        padding: 25px;
    }

    .post-header h1 {
        font-size: 28px;
    }

    .post-content-body {
        font-size: 16px;
    }

    .post-content-body h2 {
        font-size: 24px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}

/* Single Page Styles (with sidebar) */
.single-page {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.page-content {
    background-color: white;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
}

.page-body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.page-body a {
    color: #a01729;
}

.page-body a:hover {
    color: #8b1429;
}

.page-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.page-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-body .lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid #c41e3a;
}

.page-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #333;
}

.page-body p {
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.page-body li {
    margin-bottom: 12px;
}

.page-body blockquote {
    border-left: 4px solid #c41e3a;
    background-color: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.page-body blockquote p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.page-body blockquote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: #999;
    margin-top: 15px;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.info-box {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
    transition: transform 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-label {
    font-size: 14px;
    opacity: 0.95;
}

/* Contact Page Styles */
.contact-page {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.contact-main {
    background-color: white;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-info-card {
    padding: 30px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: #c41e3a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon svg {
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 5px;
}

.contact-info-card a {
    color: #c41e3a;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #8b1429;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 50px;
}

.contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #c41e3a;
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1429 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

/* Map Section */
.map-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-ad {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar-ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.ad-label {
    background-color: #c41e3a;
    color: white;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-link {
    display: block;
    color: inherit;
}

.sidebar-ad img {
    width: 100%;
    height: auto;
    display: block;
}

.ad-content {
    padding: 20px;
}

.ad-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.ad-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.ad-cta {
    display: inline-block;
    margin-top: 12px;
    color: #c41e3a;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.sidebar-ad:hover .ad-cta {
    color: #8b1429;
}

/* Sidebar Social */
.sidebar-social {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-social h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.social-link.facebook {
    background-color: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background-color: #0d65d9;
}

.social-link.youtube {
    background-color: #ff0000;
    color: white;
}

.social-link.youtube:hover {
    background-color: #cc0000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link.instagram:hover {
    opacity: 0.9;
}

/* Sidebar Text */
.sidebar-text {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.sidebar-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.sidebar-text p {
    margin-bottom: 12px;
}

/* Sidebar Newsletter */
.sidebar-newsletter {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-newsletter h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.sidebar-newsletter p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form-sidebar input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.newsletter-form-sidebar input:focus {
    outline: none;
    border-color: #c41e3a;
}

.newsletter-form-sidebar button {
    background-color: #c41e3a;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form-sidebar button:hover {
    background-color: #a01729;
}

/* Responsive Single Page & Contact */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-content {
        padding: 40px 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .page-body h2 {
        font-size: 26px;
    }

    .info-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-main {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        gap: 20px;
    }
}
