/* ===================================
   DE RING WEBSITE STYLES
   Complete CSS for De Ring website
   ================================= */

/* ===================================
   CSS RESET & BASE STYLES
   ================================= */

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

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 100%;
    line-height: 1.6;
    color: #6e6868;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   ================================= */

h1 {
    color: #6a3813;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 1.8em 0 1.2em 0;
    line-height: 1.4;
}

h1:first-child {
    margin-top: 0;
}

h2 {
    color: #f49829;
    font-size: 2.2rem;
    font-weight: normal;
    margin: 1.8em 0 1.2em 0;
    line-height: 1.3;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    color: #f49829;
    font-size: 1.6rem;
    font-weight: normal;
    text-transform: uppercase;
    margin: 1.8em 0 1.2em 0;
    line-height: 1.4;
}

h3:first-child {
    margin-top: 0;
}

h4 {
    color: #6e6868;
    font-size: 1.15rem;
    margin: 1.8em 0 1.2em 0;
}

p {
    margin-bottom: 1em;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #f49829;
    text-decoration: underline;
    font-size: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffb330;
    text-decoration: none;
}

/* ===================================
   CONTAINER & LAYOUT
   ================================= */

.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER STYLES
   ================================= */

.header {
    position: relative;
    height: 160px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 100;
}

.header .container {
    height: 100%;
    position: relative;
}

/* Logo */
.logo {
    position: absolute;
    top: 45px;
    left: 50px;
    z-index: 15;
}

.logo img {
    width: 357px;
    height: 51px;
    max-width: 100%;
    height: auto;
}

.logo a {
    text-decoration: none;
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: 15px;
    right: 50px;
    z-index: 10;
}

.top-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.top-nav li {
    border-left: 1px solid #ccc;
    padding-left: 15px;
    margin-left: 15px;
}

.top-nav li:first-child {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}

.top-nav a {
    color: #6e6868;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: #f49829;
    text-decoration: underline;
}

/* Main Navigation */
.main-nav {
    position: absolute;
    bottom: 15px;
    right: 50px;
    z-index: 10;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    color: #6e6868;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: normal;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav .active a {
    color: #f49829;
    font-weight: bold;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #6e6868;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: #f49829;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu-content {
    background: #fff;
    width: 280px;
    height: 100vh;
    margin-left: auto;
    padding: 60px 30px 30px;
    overflow-y: auto;
}

.mobile-menu-section {
    margin-bottom: 40px;
}

.mobile-menu-section h3 {
    color: #6a3813;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-section li {
    margin-bottom: 15px;
}

.mobile-menu-section a {
    color: #6e6868;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu-section a:hover,
.mobile-menu-section a.active {
    color: #f49829;
    text-decoration: underline;
}

/* ===================================
   HERO SECTION
   ================================= */

.hero-section {
    position: relative;
    width: 100vw;
    height: 450px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    overflow: hidden;
    background: #000;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
}

.fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 4px;
    padding: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-overlay h1 {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    text-transform: none;
    margin: 0;
}

/* ===================================
   INFO BANNER
   ================================= */

.info-banner {
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
}

.info-banner-grid {
    display: flex;
    width: 100%;
    height: 200px;
    margin: 0;
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
}

.info-banner-left {
    width: 33.33%;
    background-color: rgba(110, 104, 104, 0.9);
    color: #f49829;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-banner-left h2 {
    color: #f49829;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.info-banner-left p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.info-banner-middle {
    width: 33.33%;
    background-color: rgba(248, 248, 248, 0.95);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-banner-middle h3 {
    color: #f49829;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 25px 0;
    text-transform: none;
    animation: slideIn 0.5s ease-in-out;
}

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

.service-menu li {
    margin-bottom: 8px;
}

.service-menu button {
    background: transparent;
    border: none;
    color: #6e6868;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: color 0.3s ease;
}

.service-menu button:hover {
    color: #f49829;
    text-decoration: underline;
}

.info-banner-right {
    width: 33.33%;
    background-color: rgba(248, 248, 248, 0.95);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-banner-right p {
    color: #6e6868;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.cta-link {
    color: #f49829;
    text-decoration: underline;
    font-size: 1.1rem;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #ffb330;
    text-decoration: none;
}

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

/* ===================================
   MAIN CONTENT
   ================================= */

.main-content {
    padding: 0 20px;
    margin-top: 20px;
    margin-bottom: 60px;
}

/* Office Sizes Section */
.office-sizes {
    position: relative;
    margin: 30px 0;
    padding-bottom: 0;
    height: 175px;
    text-align: center;
}

.office-sizes h2 {
    position: absolute;
    top: -25px;
    font-size: 1.6rem;
    color: #6a3813;
    font-weight: bold;
    margin-bottom: 1.2em;
    z-index: 10;
    left: 0;
}

.size-grid {
    display: flex;
    height: 100%;
    margin-top: 10px;
    gap: 0.625%;
}

.size-item {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.size-item:hover {
    transform: scale(1.05);
}

.size-item sup {
    font-weight: normal;
    font-size: 62%;
}

.size-1 { background-color: #70685d; }
.size-2 { background-color: #bcb5ab; }
.size-3 { background-color: #36312b; }
.size-4 { background-color: #646569; }
.size-5 { background-color: #ddd2cc; color: #646569; }

/* Content Grid */
.content-grid {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.content-main {
    flex: 2;
    font-size: 1.15rem;
}

.content-sidebar {
    flex: 1;
    font-size: 1.15rem;
}

/* Contact Widget */
.contact-widget {
    margin-bottom: 40px;
}

.contact-widget h2 {
    margin: 1.8em 0 1.2em 0;
    color: #6a3813;
    font-size: 1.3rem;
    text-transform: none;
    font-weight: bold;
}

.contact-widget h2:first-child {
    margin-top: 12px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.contact-info li {
    padding: 3px 0;
    color: #6a3813;
}

.contact-actions {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.contact-actions li {
    padding: 5px 0;
}

.contact-actions a {
    background: transparent;
    padding: 5px 22px 5px 0;
    font-weight: bold;
    font-size: 100%;
    color: #f49829;
    text-decoration: none;
}

.contact-actions a:hover {
    text-decoration: underline;
}

/* Partners Widget */
.partners-widget {
    margin-top: 30px;
}

.partners-widget h2 {
    color: #6a3813;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.partner-logo {
    padding: 8px 0;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.partner-logo img:hover {
    opacity: 1;
}

/* ===================================
   GALLERY SECTION
   ================================= */

.gallery-section {
    position: relative;
    margin: 30px 0 20px 0;
    height: 175px;
}

.gallery-section h2 {
    font-size: 1.6rem;
    color: #6a3813;
    font-weight: bold;
    margin: 20px 0 1.2em 0;
}

.gallery-controls {
    position: absolute;
    right: 0;
    top: 6px;
    display: flex;
    gap: 2px;
}

.gallery-prev,
.gallery-next {
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0,0,0,0.2);
}

.gallery-prev.disabled,
.gallery-next.disabled {
    opacity: 0.3;
    cursor: default;
}

.gallery-container {
    overflow: hidden;
    height: 140px;
    margin-top: 20px;
}

.gallery-slider {
    display: flex;
    gap: 12px;
    transition: transform 0.3s ease;
}

.gallery-slider img {
    width: 194px;
    height: 129px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* ===================================
   REVIEWS SECTION
   ================================= */

.reviews-section {
    width: 100%;
    margin: 40px 0 30px 0;
    position: relative;
}

.reviews-content {
    background-color: #e8ddd5;
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    max-width: 1020px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.reviews-header h2 {
    color: #6e6868;
    font-size: 1.1rem;
    font-weight: normal;
    margin: 0;
    text-transform: none;
}

.reviews-nav {
    display: flex;
    gap: 4px;
}

.reviews-prev,
.reviews-next {
    width: 24px;
    height: 24px;
    background-color: #999;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.reviews-prev:hover,
.reviews-next:hover {
    background-color: #666;
}

.review-date {
    color: #6e6868;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.review-company {
    color: #f49829;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.review-text {
    color: #6e6868;
    font-size: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 20px;
}

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

.read-more {
    color: #f49829;
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
}

.read-more:hover {
    color: #ffb330;
    text-decoration: underline;
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #bcb5ab;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.review-dot.active,
.review-dot:hover {
    background-color: #f49829;
}

/* ===================================
   FOOTER
   ================================= */

.footer {
    background-color: #646569;
    margin: 50px 0 0 0;
    color: #fff;
    padding: 25px 0 0 0;
}

.footer-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 50px;
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav li {
    flex: 1;
    text-align: center;
    position: relative;
}

.footer-nav li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    display: block;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.copyright {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #a19b9b;
    text-align: center;
    padding: 10px 0;
}

/* ===================================
   FULLSCREEN VIDEO OVERLAY
   ================================= */

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.fullscreen-overlay.active {
    display: flex;
}

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

.fullscreen-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    min-width: 100vw;
    min-height: 100vh;
    transform: translate(-50%, -50%);
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 4px;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.fullscreen-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.fullscreen-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
    z-index: 10000;
}

.fullscreen-title h1 {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    text-transform: none;
    padding: 0 20px;
}

/* ===================================
   RESPONSIVE DESIGN
   ================================= */

/* Large Desktop */
@media screen and (min-width: 1280px) {
    .container {
        max-width: 1020px;
        padding: 0 calc((100vw - 1020px) / 2);
    }
    
    .hero-section {
        width: 100vw;
    }
}

/* Tablet & Small Desktop */
@media screen and (max-width: 1050px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        height: 140px;
        padding: 0 15px;
    }
    
    .logo {
        top: 35px;
        left: 30px;
    }
    
    .logo img {
        width: 300px;
        height: 43px;
    }
    
    .top-nav,
    .main-nav {
        right: 30px;
    }
    
    .top-nav {
        top: 12px;
    }
    
    .main-nav {
        bottom: 12px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .top-nav li {
        margin-left: 12px;
        padding-left: 12px;
    }
    
    .top-nav a {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .main-content {
        padding: 0 30px;
    }
    
    .office-sizes {
        padding: 0 30px;
    }
    
    .gallery-section {
        padding: 0 30px;
    }
    
    .gallery-controls {
        right: 30px;
    }
    
    .gallery-section h2 {
        padding-left: 30px;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        gap: 15px;
        height: auto;
        padding: 15px 30px;
    }
    
    .footer-nav li {
        flex: 0 0 calc(50% - 7.5px);
    }
    
    .footer-nav li:not(:last-child):after {
        display: none;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .info-banner-grid {
        flex-direction: column;
        height: auto;
    }
    
    .info-banner-left,
    .info-banner-middle,
    .info-banner-right {
        width: 100%;
        padding: 30px 20px;
    }
    
    .info-banner-left {
        background-color: rgba(110, 104, 104, 0.95);
    }
    
    .content-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-section {
        height: 350px;
    }
    
    .hero-video-container iframe {
        width: 150%;
        height: 150%;
    }
    
    .fullscreen-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .hero-overlay h1 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .reviews-content {
        padding: 25px;
        height: 220px;
    }
    
    .reviews-header h2 {
        font-size: 1.05rem;
    }
    
    .review-company {
        font-size: 1.05rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Show mobile menu */
    .mobile-menu-toggle {
        display: flex !important;
        right: 20px;
    }
    
    /* Hide desktop menus */
    .top-nav,
    .main-nav {
        display: none !important;
    }
    
    .logo {
        top: 35px;
        left: 20px;
        z-index: 15;
    }
    
    .logo img {
        width: 280px;
        height: 40px;
    }
    
    .hero-overlay h1 {
        font-size: 1.5rem;
        padding: 0 20px;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .info-banner-left,
    .info-banner-middle,
    .info-banner-right {
        padding: 25px 15px;
    }
    
    .main-content {
        padding: 0 20px;
    }
    
    .office-sizes {
        padding: 0 20px;
    }
    
    .size-grid {
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
    }
    
    .size-item {
        flex: 0 0 calc(50% - 5px);
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .gallery-section {
        padding: 0 20px;
    }
    
    .gallery-controls {
        right: 20px;
    }
    
    .reviews-content {
        padding: 20px;
        height: auto;
        min-height: 200px;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .reviews-nav {
        align-self: flex-end;
    }
    
    .review-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .reviews-prev,
    .reviews-next {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .review-dot {
        width: 8px;
        height: 8px;
    }
    
    .fullscreen-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .fullscreen-title h1 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        top: 30px;
        left: 15px;
    }
    
    .logo img {
        width: 240px;
        height: 34px;
    }
    
    .mobile-menu-toggle {
        right: 15px;
        width: 20px;
        height: 16px;
    }
    
    .mobile-menu-content {
        width: 260px;
    }
    
    .hero-section {
        height: 250px;
    }
    
    .hero-overlay h1 {
        font-size: 1.2rem;
    }
    
    .info-banner-left,
    .info-banner-middle,
    .info-banner-right {
        padding: 20px 15px;
    }
    
    .main-content {
        padding: 0 15px;
    }
    
    .office-sizes {
        padding: 0 15px;
    }
    
    .gallery-section {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    
    .size-item {
        font-size: 2rem;
        height: 70px;
    }
    
    .fullscreen-title h1 {
        font-size: 1.4rem;
    }
}