/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #3B3B3A;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

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

/* === HEADER === */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.header-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    height: 40px;
    width: 204px;
    flex-shrink: 0;
}

.logo svg {
    width: 100%;
    height: 100%;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 16px;
}

.desktop-nav a {
    color: #3b3b3a;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    background: #1D8279;
    color: white;
}

.nav-home-btn {
    background: #1d8279;
    padding: 4px 16px;
    border-radius: 8px;
}

.nav-home-btn a {
    color: white;
}

.nav-home-btn a:hover {
    background: transparent;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    color: #3b3b3a;
    padding: 8px;
}

.close-icon {
    display: none;
}

.mobile-menu-btn.active .hamburger-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 16px 0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: #3b3b3a;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.mobile-nav-link.active {
    background: #1d8279;   
    color: white;         
    font-weight: 700;      
}

.mobile-nav-link.home {
    background: #1d8279;   
    color: white;         
    font-weight: 700; 
}

.mobile-nav-link:hover {
    background: #f5f5f5;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #1d8279 0%, rgba(29, 130, 121, 0.8) 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 64px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 101px,
        #40B8B2 101px,
        #40B8B2 102px
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px 32px;
    max-width: 1312px;
    margin: 0 auto;
    width: 100%;
}

.hero-logo {
    margin-bottom: 24px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-text {
    color: white;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 4px;
}

.hero-title {
    color: white;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.125;
    margin-bottom: 24px;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 32px;
    max-width: 702px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background: white;
    color: #3B3B3A;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background: #3B3B3A;
    color: white;
}


/* === HERO CORNER DECORATIONS === */
.hero-corner {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    opacity: 0.85;
}

.hero-corner svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Top Left - Purple (klein, flach) */
.hero-corner.top-left {
    top: 0;
    left: 0;
    width: 180px;
    height: 80px;
}

/* Top Right - Yellow (groß, flach) */
.hero-corner.top-right {
    top: 0;
    right: 0;
    width: 280px;
    height: 100px;
}

/* Bottom Left - Teal (mittel, flach) */
.hero-corner.bottom-left {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 85px;
}

/* Bottom Right - Orange (am größten, flach) */
.hero-corner.bottom-right {
    bottom: 0;
    right: 0;
    width: 320px;
    height: 120px;
}

/* === SMART ENERGY SECTION === */
.smart-energy-section {
    padding: 64px 0;
    background: white;
}

.smart-energy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.smart-energy-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    order: 2;
}

.smart-energy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(151.125deg, rgb(255, 255, 255) 8.9157%, rgb(29, 130, 121) 114.4%);
    mix-blend-mode: hard-light;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 1;
}

.smart-energy-content {
    order: 1;
}

.smart-energy-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3B3B3A;
    margin-bottom: 24px;
    line-height: 1.2;
}

.smart-energy-content p {
    font-size: 16px;
    color: #3B3B3A;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 24px;
}

.smart-energy-content strong {
    font-weight: 900;
}

.smart-energy-content sup {
    color: #1d8279;
    font-size: 11.61px;
}

.references {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
}

.references p {
    margin-bottom: 4px;
}

.references a {
    color: #1d8279;
    text-decoration: underline;
}

.references a:hover {
    opacity: 0.8;
}

/* === WHAT DRIVES US SECTION === */
.what-drives-us-section {
    padding: 48px 0;
    background: white;
}

.what-drives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.section-badge {
    background: rgba(64, 184, 178, 0.25);
    padding: 8px 24px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 32px;
}

.section-badge.center {
    display: inline-block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

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

.section-badge p {
    color: #1d8279;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.what-drives-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3b3b3a;
    margin-bottom: 32px;
}

.text-content p {
    font-size: 16px;
    color: #3b3b3a;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 24px;
}

.text-content strong {
    font-weight: 900;
}

.tooltip-wrapper {
    position: relative;
    display: inline;
}

.underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tooltip-icon {
    display: inline-block;
    margin-left: 4px;
    cursor: pointer;
    font-size: 16px;
}

.tooltip-content {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #3b3b3a;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    width: 200px;
    margin-bottom: 8px;
    z-index: 10;
    line-height: 1.4;
}

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

.tooltip-icon:hover + .tooltip-content {
    display: block;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.stats-row:last-child {
    margin-bottom: 0;
}

.stat-card {
    border-radius: 24px;
    padding: 24px;
}

.stat-card.teal {
    background: rgba(64, 184, 178, 0.25);
}

.stat-card.purple {
    background: rgba(108, 111, 169, 0.25);
}

.stat-card.orange {
    background: rgba(243, 151, 92, 0.25);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card.teal .stat-number {
    color: #1d8279;
}

.stat-card.purple .stat-number {
    color: #6c6fa9;
}

.stat-card.orange .stat-number {
    color: #f3975c;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: #3b3b3a;
}

/* === HOW IT WORKS SECTION === */
.how-it-works-section {
    padding: 64px 0;
    background: rgba(59, 59, 58, 0.1);
}

.section-intro {
    text-align: center;
    margin-bottom: 48px;
}

.section-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #3b3b3a;
    margin-bottom: 24px;
}

.section-intro p {
    font-size: 16px;
    color: #3b3b3a;
    font-weight: 600;
    line-height: 1.55;
    max-width: 775px;
    margin: 0 auto;
}

.section-intro strong {
    font-weight: 900;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.work-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.work-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.work-icon.teal {
    background: #1d8279;
}

.work-icon.purple {
    background: #6c6fa9;
}

.work-icon.yellow {
    background: #dedb2e;
}

.work-icon.orange {
    background: #f3975c;
}

.work-icon svg {
    color: white;
}

.work-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3b3b3a;
    margin-bottom: 16px;
}

.work-card p {
    font-size: 16px;
    font-weight: 600;
    color: #3b3b3a;
    line-height: 1.5;
}

/* === PARTNERS SECTION === */
.partners-section {
    padding: 64px 0;
    background: white;
}

.partners-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #3B3B3A;
    text-align: center;
    margin-bottom: 48px;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.partners-arrow {
    display: none;
    background: #2B9B8F;
    color: white;
    padding: 12px;
    border-radius: 8px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.partners-arrow:hover {
    background: #238A7E;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
}

.partner-logo {
    background: #F5F5F5;
    border-radius: 12px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #3B3B3A;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    mix-blend-mode: multiply;
}

/* === PARTNER LOGO ANIMATIONS === */

.partner-logo {
    animation: fadeInLogo 0.6s ease-in-out;
}

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

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

.partner-logo.fade-out {
    animation: fadeOutLogo 0.3s ease-in-out forwards;
}

.partners-nav-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.partners-arrow-mobile {
    background: #2B9B8F;
    color: white;
    padding: 12px;
    border-radius: 8px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.partners-arrow-mobile:hover {
    background: #238A7E;
}

.partners-pagination {
    font-size: 16px;
    font-weight: 500;
    color: #3B3B3A;
}

.partners-section > .container-partners > p {
    font-size: 16px;
    color: #3B3B3A;
    font-weight: 600;
    line-height: 1.55;
    max-width: 775px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.partners-section p strong {
    font-weight: 900;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .partners-section > .container-partners > p {
        font-size: 18px;
        margin-bottom: 64px;
    }
}

@media (min-width: 1024px) {
    .partners-section > .container-partners > p {
        font-size: 18px;
    }
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    background: linear-gradient(180deg, rgba(29, 130, 121, 0.8) 0%, #1d8279 100%);
    padding: 80px 0;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.cta-card {
    background: linear-gradient(180deg, rgba(29, 130, 121, 0.8) 0%, #1d8279 100%);
    border: 1px solid white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cta-icon.teal {
    background: #40b8b2;
}

.cta-icon.purple {
    background: #6c6fa9;
}

.cta-icon.yellow {
    background: #dedb2e;
}

.cta-icon svg {
    color: white;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 16px;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    margin-bottom: auto;
}

.cta-btn,
.cta-link {
    background: white;
    color: #3B3B3A;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-top: 40px;
    transition: background 0.3s ease;
    display: inline-block;   
    text-decoration: none;   
}

.cta-btn:hover {
    background: #3B3B3A;
    color: white;
}

/* === FOOTER === */
.footer {
    background: #1D8279;
    position: relative;
    overflow: hidden;
    color: white;
}

.footer-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-department {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 16px;
    line-height: 1.2;
    color: white;
}

.footer-email {
    font-size: 20px;
    text-decoration: underline;
    color: white;
    display: inline-block;
    margin-bottom: 32px;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: white;
}

.footer-col ul {
    list-style: none;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 0.8;
}

.acknowledgement h4 {
    margin-top: 0px;
}

.eu-logo {
    margin-bottom: 16px;
}

.eu-flag {
    width: 91px;
    height: 61px;
}

.acknowledgement p {
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2vh;
    min-height: 30px; 
    background-color: #f3975c;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */


@media (max-width: 767px) {
  .tooltip-content {
    position: fixed;
    bottom: auto;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100vw - 60px);
    max-width: 300px;
    margin-top: 10px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  
  .tooltip-content::after {
    display: none;
  }
  
  .tooltip-icon:active + .tooltip-content,
  .tooltip-icon:focus + .tooltip-content {
    display: block;
  }
}
@media (min-width: 768px) {

  .hero-corner.top-left {
        width: 280px;
        height: 120px;
    }
    
    .hero-corner.top-right {
        width: 420px;
        height: 140px;
    }
    
    .hero-corner.bottom-left {
        width: 300px;
        height: 130px;
    }
    
    .hero-corner.bottom-right {
        width: 500px;
        height: 180px;
    }

    .container {
        padding: 0 32px;
    }

    .container-partners {
        padding: 0 32px;
    }

    .header-container {
        padding: 24px 32px;
    }

    .logo {
        height: 60px;
        width: 306px;
    }

    .hero-section {
        min-height: 982px;
        align-items: center;
        padding-top: 0;
    }

    .hero-logo {
        width: 400px;
        margin-bottom: 64px;
    }

    .hero-logo-text {
        font-size: 100px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-btn {
        padding: 16px 40px;
        font-size: 20px;
    }

    .smart-energy-section {
        padding: 96px 0;
    }

    .smart-energy-image img {
        height: 500px;
    }

    .smart-energy-content h2 {
        font-size: 40px;
    }

    .smart-energy-content p,
    .references {
        font-size: 18px;
    }

    .references {
        grid-template-columns: 1fr 1fr;
        gap: 16px;  

    }

    .what-drives-us-section {
        padding: 64px 0;
    }

    .section-badge p {
        font-size: 24px;
    }

    .what-drives-text h2 {
        font-size: 40px;
    }

    .text-content p {
        font-size: 18px;
    }

    .tooltip-content {
        width: 250px;
        font-size: 16px;
    }

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

    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 24px;
    }

    .how-it-works-section {
        padding: 96px 0;
    }

    .section-intro h2 {
        font-size: 48px;
    }

    .section-intro p {
        font-size: 18px;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .partners-section {
        padding: 96px 0;
    }

    .partners-section h2 {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }

    .partner-logo {
        font-size: 16px;
    }

    .cta-section {
        padding: 128px 0;
    }

    .cta-section h2 {
        font-size: 48px;
    }

    .cta-subtitle {
        font-size: 24px;
        margin-bottom: 64px;
    }

    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }

    .footer-container {
        padding: 64px 32px 80px;
    }

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

    .footer-department,
    .footer-email {
        font-size: 18px;
    }

    .footer-col ul li a,
    .acknowledgement p {
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
.hero-corner.top-left {
        width: 380px;
        height: 160px;
    }
    
    .hero-corner.top-right {
        width: 550px;
        height: 180px;
    }
    
    .hero-corner.bottom-left {
        width: 400px;
        height: 170px;
    }
    
    .hero-corner.bottom-right {
        width: 650px;
        height: 220px;
    }
    .desktop-nav {
        display: flex;
        gap: 16px;
    }

    .desktop-nav a {
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-logo {
        width: 600px;
    }

    .hero-logo-text {
        font-size: 140px;
    }

    .hero-title {
        font-size: 80px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .smart-energy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
    }

    .smart-energy-image {
        order: 1;
    }

    .smart-energy-content {
        order: 2;
    }

    .smart-energy-image img {
        height: 600px;
    }

    .what-drives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .partners-wrapper {
        gap: 32px;
    }

    .partners-arrow {
        display: flex;
    }

    .partners-grid {
        grid-template-columns: repeat(7, 1fr);
    }

    .partners-nav-mobile {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
        align-items: start;
    }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .hero-corner.top-left {
        width: 450px;
        height: 190px;
    }
    
    .hero-corner.top-right {
        width: 650px;
        height: 220px;
    }
    
    .hero-corner.bottom-left {
        width: 480px;
        height: 200px;
    }
    
    .hero-corner.bottom-right {
        width: 750px;
        height: 260px;
    }
    .container {
        padding: 0 48px;
    }

    .container-partners {
        padding: 0 48px;
    }

    .header-container {
        padding: 24px 48px;
    }
}