/* Institutional Collaboration Page Styles */

/* CSS Variables */
:root {
    --web-pink: #A6102B;
    --primary-text: #272727;
    --secondary-green: #1B8140;
    --background-light: #F7F7F1;
    --text-dark: #0A0A0A;
    --text-grey: #7E7E7E;
    --white: #ffffff;
    --black: #000000;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Top Banner */
.top-banner {
    background: #2A2929;
    color: white;
    font-size: 11px;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.banner-text-section {
    flex: 1;
}

.banner-text {
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-logo-section {
    flex-shrink: 0;
}

.banner-logo-container {
    background: white;
    padding: 5px 10px;
    display: inline-block;
}

.banner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

/* Header Styles */
.main-header {
    background: transparent;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

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

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-section h1 {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text);
    margin: 0;
}

/* Navigation Section */
.navigation-section {
    background: #f7f7f1;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.main-navigation {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0 300px 0 20px;
}

.nav-menu-main {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    align-items: center;
    width: 100%;
}

.nav-menu-main a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu-main a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu-main a:hover {
    color: var(--secondary-green);
}

.nav-menu-main a:hover i {
    transform: rotate(180deg);
}

/* Announcement Section */
.announcement-section {
    background: #2A2929;
    color: white;
    font-size: 12px;
    border-bottom: 1px solid #444;
    height: 54px;
}

.announcement-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.announcement-left {
    width: 298px;
    height: 54px;
    background: var(--primary-text);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.announcement-right {
    flex: 1;
    height: 54px;
    background: #fff3e3;
    color: var(--primary-text);
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-style: italic;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.announcement-right::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.announcement-right:active {
    cursor: grabbing;
}

.announcement-right .separator {
    color: #bb4556;
    margin: 0 8px;
    font-weight: bold;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--text-grey);
    color: var(--text-grey);
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-register {
    background: var(--web-pink);
    border: 1px solid var(--web-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover, .btn-register:hover {
    text-decoration: none;
}

.btn-register:hover {
    background: #800f20;
    border-color: #800f20;
    color: white;
}

/* Hamburger Menu */
.hamburger-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-text);
    cursor: pointer;
    padding: 10px;
}

.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hamburger-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.hamburger-menu.active {
    right: 0;
}

.menu-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-text);
    cursor: pointer;
    padding: 10px;
}

.menu-content {
    padding: 30px 0;
}

.menu-nav {
    padding: 0 30px;
    margin-bottom: 40px;
}

.menu-link {
    display: block;
    padding: 15px 0;
    color: var(--primary-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.menu-link:hover {
    /*color: var(--secondary-green);*/
    padding-left: 10px;
    text-decoration: none;
}

.menu-auth {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-auth .btn-login,
.menu-auth .btn-register {
    text-align: center;
    padding: 12px 20px;
}

/* Hero Section */
.hero-section {
    background: url('/assetsNews/institutional_collaboration/banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-card {
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(0px);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 754px;
    height: 504px;
    position: relative;
    left: 80px;
    opacity: 1;
    transform: rotate(0deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--primary-text);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    background: var(--secondary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--primary-text);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000000;
    max-width: 450px;
}

.btn-primary {
    background: #A6102B;
    border: 1px solid #A6102B;
    color: white;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 3px;
    width: 168px;
    text-align: center;
}

.btn-primary:hover {
    background: #800f20;
    border-color: #800f20;
    color: white;
    text-decoration: none;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: white;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-text);
    display: inline-block;
}

.stat-suffix {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-text);
    display: inline-block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-grey);
    margin-top: 10px;
    font-weight: 400;
}

/* Why Konnifel Section */
.why-konnifel-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.section-subtitle {
    font-size: 16px;
    color: var(--web-pink);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-konnifel-section .section-header h2 {
    font-size: 48px;
    color: black;
    margin-bottom: 0;
    background: transparent;
    display: inline-block;
    padding: 0;
    border-radius: 0;
}

.section-header h2 {
    font-size: 48px;
    color: var(--primary-text);
    margin-bottom: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background: transparent;
    padding: 25px;
    border-radius: 25px;
    border: 2px solid #d0d0d0;
    margin-bottom: 20px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--primary-text);
}

.why-konnifel-images {
    position: relative;
}

.images-container {
    display: flex;
    gap: 40px;
    position: relative;
    height: 550px;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 1;
    transform: rotate(0deg);
}

.image-container.lab-image {
    width: 287px;
    height: 525px;
    align-self: flex-start;
}

.image-container.team-image {
    width: 252px;
    height: 480px;
    align-self: flex-end;
}

.lab-image {
    background: url('/assetsNews/institutional_collaboration/frame.png');
}

.team-image {
    background: url('/assetsNews/institutional_collaboration/Frame3.png');
}

.shield-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    left: 310px;
    transform: translate(-50%, -50%);
    z-index: 3;
    /*border: 3px solid white;*/
}

.shield-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Cards Section */
.features-cards-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    background: var(--secondary-green);
    color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.card-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    overflow: hidden;
}

.icon-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	background-color: #fff;
}

.icon-image {
    width: 60%;
    height: 60%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
	background-color: #fff;
}

.icon-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.card-content {
    flex: 1;
}

.card-number {
    font-size: 72px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 20px;
    right: 40px;
    line-height: 1;
}

.card-numeric {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    display: inline-block;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.card-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #ffffff;
}

.video-container {
    position: relative;
    width: 100%;
    height: 648px;
    background: url('/assetsNews/institutional_collaboration/video-image.png');
    background-size: 100% 100%;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.announcement-badge-video {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    max-width: 700px;
}


.video-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.video-content h2 {
    font-size: 64px;
    font-weight: 700;
    margin: 20px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.play-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translateX(-50%) scale(1.1);
}

.play-button i {
    margin-left: 4px;
}

.youtube-badge-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Onboarding Section */
.onboarding-section {
    padding: 80px 0;
    background: white;
}

.onboarding-section .section-header {
    margin-bottom: 60px;
}

.onboarding-section .section-header h2 {
    font-size: 48px;
    color: var(--primary-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.onboarding-card {
    background: #f2f2f2;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    margin: 20px 20px 0 20px;
}

.department-image {
    background-image: url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=2340&q=80');
}

.students-image {
    background-image: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=2340&q=80');
}

.faculty-image {
    background-image: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2832&q=80');
}

.onboarding-card .card-content {
    padding: 30px;
    text-align: left;
}

.onboarding-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-text);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.onboarding-card p {
    color: var(--text-grey);
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-select-plan {
    background: white;
    border: 2px solid var(--web-pink);
    color: var(--web-pink);
    padding: 15px 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.btn-select-plan:hover {
    background: var(--web-pink);
    color: white;
    text-decoration: none;
}

/* Handshake Section */
.handshake-section {
    position: relative;
    z-index: 10;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.handshake-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.handshake-img {
    width: 100vw;
    height: auto;
    object-fit: contain;
}

/* Collaborate Section */
.collaborate-section {
    background: #000000;
    padding: 124px 0 100px 0;
    color: white;
    text-align: center;
    margin-top: -25vh;
    z-index: 1;
    position: relative;
    min-height: 40vh;
}

.collaborate-section h2 {
    font-size: 120px;
    font-weight: 700;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: white;
    line-height: 1;
}

.btn-submit-request {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-top: 20px;
}

.btn-submit-request:hover {
    background: white;
    color: var(--primary-text);
    text-decoration: none;
}

/* Footer */
.main-footer {
    background: white;
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-logo .logo-placeholder {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.footer-logo h3 {
    font-size: 20px;
    margin: 0;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-size: 14px;
    color: var(--text-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-left span {
    font-size: 12px;
    color: var(--text-grey);
}

.footer-left a {
    font-size: 12px;
    color: var(--text-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-left a:hover {
    color: var(--primary-text);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-grey);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-section {
        display: none;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-card {
        position: relative;
        width: calc(100% - 40px);
        height: auto;
        top: auto;
        left: auto;
        margin: 20px;
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 13px;
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .stat-number, .stat-suffix {
        font-size: 48px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-number {
        position: relative;
        top: 0;
        right: 0;
        font-size: 48px;
        margin-bottom: 10px;
    }
    
    .video-content h2 {
        font-size: 36px;
    }
    
    .collaborate-section h2 {
        font-size: 48px;
        letter-spacing: 2px;
    }
    
    .handshake-section {
        height: 60vh;
    }
    
    .handshake-img {
        width: 100vw;
        height: auto;
    }
    
    .collaborate-section {
        padding: 80px 0 60px 0;
        margin-top: -20vh;
        min-height: 50vh;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .announcement-section {
        height: 60px;
    }
    
    .announcement-left {
        width: 80px;
        font-size: 8px;
        padding: 0 5px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .announcement-right {
        font-size: 11px;
        padding: 0 10px;
        flex: 1;
        min-width: 0;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        align-items: center;
        height: 60px;
        background: #fff3e3;
    }
    
    .hamburger-menu {
        width: 80vw;
        right: -80vw;
        max-width: 500px;
    }
    
    .why-konnifel-images {
        margin-top: 40px;
    }
    
    .images-container {
        flex-direction: row;
        height: 400px;
        gap: 10px;
        justify-content: space-between;
        align-items: flex-start;
    }

    .image-container.lab-image {
        width: 48%;
        height: 320px;
        align-self: flex-start;
    }

    .image-container.team-image {
        width: 48%;
        height: 280px;
        align-self: flex-end;
    }

    .shield-icon {
        left: 50%;
        width: 80px;
        height: 80px;
    }
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .collaborate-section h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .handshake-section {
        height: 18vh;
    }
    
    .handshake-img {
        width: 100vw;
        height: auto;
        max-height: 20vh;
    }
    
    .collaborate-section {
        padding: 30px 20px 40px 20px;
        margin-top: -5vh;
        min-height: 55vh;
    }
    
    .btn-submit-request {
        padding: 15px 30px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
}