/* Main CSS for Visible.vc clone */

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    --primary-color: #3f51b5;
    --primary-hover: #303f9f;
    --text-color: #1a237e;
    --secondary-text: #3949ab;
    --dark-text: #0d47a1;
    --light-bg: #ffffff;
    --lighter-bg: #f5f7fa;
    --card-bg: #ffffff;
    --light-gray: rgba(0, 0, 0, 0.05);
    --medium-gray: rgba(0, 0, 0, 0.1);
    --dark-gray: rgba(0, 0, 0, 0.5);
    --white: #fff;
    --black: #000;
    --blue-accent: #2196F3;
    --blue-light: #bbdefb;
    --blue-lighter: #e3f2fd;
    --blue-gradient: linear-gradient(135deg, #3f51b5, #2196F3);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --border-radius: 4px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--lighter-bg);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-transparent {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.btn-transparent:hover {
    background-color: var(--light-gray);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-bg);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 30px;
    filter: none;
}

.nav-menu {
    flex: 1;
    margin: 0 40px;
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    font-weight: 500;
    padding: 10px 0;
    display: block;
    color: var(--text-color);
}

.main-menu > li > a:hover {
    color: var(--primary-color);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--light-bg);
    min-width: 220px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 20px;
    display: none;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-section {
    margin-right: 30px;
}

.dropdown-section h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.dropdown-content ul li {
    margin-bottom: 10px;
}

.dropdown-content ul li a {
    display: flex;
    flex-direction: column;
}

.dropdown-content ul li a span {
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: 2px;
}

.dropdown-content ul li a:hover {
    color: var(--primary-color);
}

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

.nav-buttons .btn-transparent {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.nav-buttons .btn-transparent:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 150px 0 50px;
    background-color: var(--lighter-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

.gradient-shape {
    position: absolute;
    width: 60%;
    height: 80%;
    background: var(--blue-gradient);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.gradient-shape.left {
    top: 10%;
    left: -30%;
    transform: rotate(-45deg);
}

.gradient-shape.right {
    top: 30%;
    right: -30%;
    transform: rotate(45deg);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.hero-cta {
    margin-top: 40px;
}

.no-credit {
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 10px;
}

.dashboard-preview {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-preview img {
    width: 100%;
    display: block;
}

.trusted-by {
    margin-top: 60px;
    padding: 20px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.trusted-by p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-color);
}

.logo-carousel {
    overflow: hidden;
}

.logo-slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-slide img {
    height: 30px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-slide img:hover {
    filter: grayscale(0%) brightness(1.5);
    opacity: 1;
}

/* Founders and Investors Section */
.founders-investors {
    padding: 80px 0;
    background-color: var(--lighter-bg);
    color: var(--text-color);
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-box {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow);
}

.feature-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-box p {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.feature-list {
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    color: var(--secondary-text);
}

.feature-list li:before {
    display: none;
}

.lp-dashboard {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.lp-dashboard img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-box .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Why Visible Section */
.why-visible {
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-visible::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    left: -10%;
    top: 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1), rgba(33, 150, 243, 0.1));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
}

.why-visible .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.why-visible h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-text);
}

.why-visible p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.signature {
    margin-top: 50px;
}

.signature p {
    margin-bottom: 5px;
}

.signature-img {
    max-width: 200px;
    margin: 10px 0;
}

.founder {
    font-weight: 600;
    color: var(--dark-text);
}

/* Founder Features Section */
.founder-features {
    padding: 80px 0;
    background-color: var(--lighter-bg);
    position: relative;
    overflow: hidden;
}

.founder-features::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 100%;
    right: -30%;
    top: 10%;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1), rgba(33, 150, 243, 0.1));
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    z-index: 0;
}

.founder-features .container {
    position: relative;
    z-index: 1;
}

.founder-features h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.feature-slider-container {
    position: relative;
    padding: 0 15px;
}

.feature-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.feature-cards {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    margin-bottom: 60px;
}

.feature-card {
    flex: 0 0 25%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                border 0.3s ease,
                background-color 0.3s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin: 0 10px;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-card p {
    font-size: 16px;
    color: var(--secondary-text);
    margin-bottom: 20px;
    min-height: 60px;
}

.feature-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 240px;
    background-color: var(--light-bg);
}

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

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-arrow {
    background-color: rgba(63, 81, 181, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-arrow.prev-arrow {
    background-color: rgba(63, 81, 181, 0.1);
}

.slider-arrow.next-arrow {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(63, 81, 181, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* CTA Main */
.cta-main {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.cta-main .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cta-section {
    background-color: var(--lighter-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.cta-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    color: var(--secondary-text);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
    overflow: hidden;
    position: relative;
}

.testimonial-slider-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-row {
    display: flex;
    gap: 20px;
    width: max-content;
    position: relative;
}

.upper-row {
    animation: slideToRight 40s linear infinite;
}

.lower-row {
    animation: slideToLeft 40s linear infinite;
}

@keyframes slideToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideToLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-slide {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
}

.testimonial-card {
    height: 100%;
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                border 0.3s ease,
                background-color 0.3s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 16px;
    margin: 0;
    color: var(--dark-text);
}

.author-info p {
    font-size: 12px;
    margin: 0;
    color: var(--secondary-text);
}

.company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.company-logo img {
    max-width: 70%;
    max-height: 60px;
    filter: none;
}

/* Testimonials hover effect */
.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Investor Solutions Section */
.investor-solutions {
    padding: 100px 0;
    background-color: var(--lighter-bg);
    position: relative;
}

.investor-solutions .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.investor-solutions .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-card {
    flex: 0 0 calc(25% - 15px);
    width: calc(25% - 15px);
    max-width: calc(25% - 15px);
    margin-bottom: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                border 0.3s ease,
                background-color 0.3s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
}

.solution-header {
    padding: 20px;
    height: 180px;
    display: flex;
    flex-direction: column;
}

.solution-info h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--dark-text);
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.solution-info p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--secondary-text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.solution-image {
    flex: 1;
    overflow: hidden;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    padding: 10px;
}

.solution-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

/* Emoji boyutlarını düzenle */
.solution-info h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.solution-info h3 .emoji {
    font-size: 16px;
    margin-left: 5px;
    display: inline-block;
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        height: 400px;
    }
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: var(--light-bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

.footer-col ul li a {
    font-size: 14px;
    color: var(--secondary-text);
}

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

.footer-col ul li a span {
    background-color: var(--primary-color);
    color: var(--white);
    margin-left: 5px;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    position: relative;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--secondary-text);
}

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

.footer-links a {
    font-size: 14px;
    color: var(--secondary-text);
}

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

.windows-activate {
    position: absolute;
    right: 0;
    bottom: -30px;
    background-color: var(--lighter-bg);
    padding: 8px 15px;
    font-size: 12px;
    opacity: 0.7;
    color: var(--secondary-text);
}

.windows-activate p:first-child {
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-main .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 25px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .what-is-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-cards {
        flex-wrap: nowrap;
    }
    
    .feature-card {
        flex: 0 0 100%;
    }
    
    .early-access-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobil cihazlarda kart animasyonunu düzenle */
    .card-expanded {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Mobil dokunmatik için daha büyük tıklama alanları */
    .nav-menu .main-menu > li > a,
    .btn,
    .footer-col ul li a {
        padding: 12px 10px;
    }
    
    /* Mobilde menü düzenleme */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-bg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        z-index: 1000;
    }
    
    .nav-menu.active .main-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu.active .main-menu > li {
        margin: 5px 0;
        text-align: center;
    }
    
    /* Mobil cihazlarda slider kontrolleri */
    .slider-controls {
        gap: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .feature-box h2,
    .section-title,
    .security-text h2,
    .early-access-text h2 {
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Çok küçük ekranlarda animasyonu devre dışı bırak */
    .card-expanded {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(58, 130, 246, 0.3);
    }
    
    /* Mobil için testimonial-card düzenlemeleri */
    .testimonial-slide {
        width: 280px;
    }
    
    /* Mobil için form elemanları */
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background-color: var(--lighter-bg);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: -30%;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1), rgba(33, 150, 243, 0.1));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.security-content {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
    box-shadow: var(--box-shadow);
}

.security-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security-logo {
    width: 100px;
    height: 100px;
}

.security-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.security-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.security-text h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.security-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-text);
}

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

.security-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.data-encryption {
    background-color: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.secure-dev {
    background-color: rgba(3, 169, 244, 0.1);
    border: 1px solid rgba(3, 169, 244, 0.3);
}

.data-retention {
    background-color: rgba(63, 81, 181, 0.1);
    border: 1px solid rgba(63, 81, 181, 0.3);
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-text);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--lighter-bg);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cta-box {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--secondary-text);
    line-height: 1.6;
    flex-grow: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive styles */
@media (max-width: 992px) {
    .security-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .security-section {
        padding: 60px 0;
    }
    
    .security-text h2 {
        font-size: 24px;
    }
    
    .security-feature {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
}

/* Early Access Section */
.early-access-section {
    padding: 80px 0;
    background-color: #f5f8ff;
}

.early-access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.early-access-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.2;
}

.early-access-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.early-access-text .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3A82F6;
    margin-top: 20px;
}

.early-access-form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3A82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.interest-type .checkbox-group {
    display: flex;
    gap: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3A82F6;
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-group.consent {
    margin-top: 30px;
}

.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.contact-content h2 span {
    display: block;
    font-size: 1.3rem;
    color: #64748b;
    margin-top: 5px;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-right: 20px;
    background-color: rgba(59, 130, 246, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-info a {
    color: #3A82F6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .early-access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .early-access-section, 
    .contact-section {
        padding: 60px 0;
    }
    
    .early-access-text h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .interest-type .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* What is GroviaHub Section */
.what-is-groviahub {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.what-is-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    display: block;
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 5px;
    font-weight: 400;
}

.what-is-description > p {
    font-size: 1.3rem;
    text-align: center;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.what-is-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.what-is-card {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                border 0.3s ease,
                background-color 0.3s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
    text-align: center;
    max-width: 340px;
    width: 100%;
}

.what-is-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.what-is-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.what-is-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .what-is-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-is-groviahub {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .what-is-description > p {
        font-size: 1.1rem;
    }
    
    .what-is-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .what-is-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Tıklandığında büyüyen kart animasyonu */
.card-expanded {
    transform: scale(1.2);
    box-shadow: 0 15px 40px rgba(58, 130, 246, 0.4);
    z-index: 100;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
    border: 2px solid #3A82F6;
}

/* Çözümler Slider Bölümü */
.solutions-slider-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-category {
    width: 100%;
    margin-bottom: 60px;
}

.category-title {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--dark-text);
    text-align: left;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.solutions-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.solutions-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    padding-bottom: 15px;
    will-change: transform;
}

.solution-card {
    flex: 0 0 calc(25% - 15px);
    width: calc(25% - 15px);
    max-width: calc(25% - 15px);
    margin-bottom: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                border 0.3s ease,
                background-color 0.3s ease;
    cursor: pointer;
    will-change: transform, box-shadow;
}

.solution-header {
    padding: 20px;
    height: 180px;
    display: flex;
    flex-direction: column;
}

.solution-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--dark-text);
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.solution-info p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary-text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.solution-image {
    flex: 1;
    overflow: hidden;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    padding: 10px;
}

.solution-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

/* Emoji boyutlarını düzenle */
.solution-info h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.solution-info h3 .emoji {
    font-size: 16px;
    margin-left: 5px;
    display: inline-block;
}

/* Slider kontrolleri */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-arrow {
    background-color: rgba(63, 81, 181, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-arrow.prev-arrow {
    background-color: rgba(63, 81, 181, 0.1);
}

.slider-arrow.next-arrow {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(63, 81, 181, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Responsive ayarlamalar */
@media (max-width: 1200px) {
    .solution-card {
        flex: 0 0 calc(33.333% - 10px);
        width: calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
        height: 420px;
    }
    
    .solution-info h3 {
        font-size: 14.5px;
    }
    
    .solution-info p {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .solution-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .slider-controls {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .solution-card {
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        height: 400px;
        scroll-snap-align: center;
    }
    
    .solutions-cards {
        padding: 0 10px 15px 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .solutions-slider {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .slider-controls {
        gap: 10px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow svg {
        width: 28px;
        height: 28px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .solution-card {
        flex: 0 0 calc(100% - 30px);
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        height: 380px;
        margin: 0 auto;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-arrow svg {
        width: 24px;
        height: 24px;
    }
}

/* Özel hover efekti */
.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(63, 81, 181, 0.25);
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    padding: 8px 15px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Integration icons */
.integration-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.integration-icons i {
    font-size: 40px;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.integration-icons i:hover {
    transform: scale(1.2);
    color: var(--blue-accent);
}

/* Mobile menu buttons styling */
.mobile-menu-buttons {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

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

.mobile-menu-buttons .btn {
    width: 80%;
    margin-bottom: 10px;
    justify-content: center;
}

.mobile-menu-buttons .language-btn {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .nav-menu.active {
        padding-top: 20px;
    }
    
    .main-menu {
        display: none;
    }
    
    .nav-menu.active .mobile-menu-buttons {
        margin-top: 40px;
    }
}

/* Mobile menu navigation styling */
.mobile-menu-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

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

.mobile-nav-item {
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    color: var(--primary-color);
    background-color: rgba(63, 81, 181, 0.05);
}

/* Update mobile menu buttons styling */
.mobile-menu-buttons {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mobile-menu-buttons .btn {
    width: 80%;
    margin-bottom: 10px;
    justify-content: center;
}

.mobile-menu-buttons .language-btn {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .nav-menu.active {
        padding-top: 20px;
        padding-bottom: 30px;
        overflow-y: auto;
        max-height: 80vh;
    }
    
    .main-menu {
        display: none;
    }
} 

/* Partners Section Styles */
.partners-section {
    padding: 100px 0 60px;
    background-color: var(--lighter-bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

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

.partner-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
}

.partner-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.partner-info p {
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Industries Section Styles */
.industries-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

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

.industry-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.industry-card p {
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Responsive Styles for Partners Page */
@media (max-width: 992px) {
    .partners-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card,
    .industry-card {
        padding: 20px;
    }
    
    .partner-logo {
        height: 100px;
    }
    
    .partner-logo img {
        max-height: 80px;
    }
    
    .industry-icon {
        font-size: 36px;
    }
}

/* Partners Logo Grid Styles */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 10px;
}

.partner-logo-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    transition: var(--transition);
    text-align: center;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.partner-logo-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

/* Responsive Styles for Partners Logo Grid */
@media (max-width: 992px) {
    .partners-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .hero-small h1 {
        font-size: 32px;
    }
    
    .partners-section, .industries-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo-item {
        padding: 15px 10px;
    }
    
    .partner-logo-item img {
        max-height: 60px;
        margin-bottom: 10px;
    }
    
    .hero-small {
        padding: 60px 0 30px;
    }
    
    .hero-small h1 {
        font-size: 26px;
    }
    
    .hero-small p {
        font-size: 16px;
    }
    
    .partners-section, .industries-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .hero-small h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .hero-small p {
        font-size: 14px;
    }
    
    .partner-logo-item {
        padding: 12px 8px;
    }
    
    .partner-logo-item img {
        max-height: 50px;
        margin-bottom: 8px;
    }
    
    .partner-logo-item h3 {
        font-size: 14px;
    }
    
    .partners-section, .industries-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* Hero Small Style */
.hero-small {
    padding: 80px 0 40px;
    min-height: auto;
}

.hero-small .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-small h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-small p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Single Column Style for Partners Page */
.footer-single-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.footer-section {
    margin-bottom: 10px;
    padding-bottom: 20px;
}


@media (min-width: 769px) {
    .footer-section {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

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

.footer-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

.footer-section ul li a {
    color: var(--secondary-text);
    font-size: 16px;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .footer-section ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .footer-section {
        padding-bottom: 15px;
        margin-bottom: 5px;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section ul li a {
        font-size: 14px;
    }
    
    .footer-single-column {
        gap: 20px;
    }
    
    .footer-section {
        border-bottom: none;
    }
} 