.platform-section {
    padding: 1rem 0;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.platform-section .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.platform-section .floating-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.innovation-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.innovation-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 400px;
}

.innovation-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
}

.feature-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    opacity: 0.8;
}

@media (max-width: 968px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .innovation-header h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .innovation-subtitle {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .platform-section {
        padding: 3rem 0;
    }
    
    .platform-section .container {
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
} 