.esim-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.esim-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.esim-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.esim-icon-container {
    flex-shrink: 0;
}

.esim-icon {
    width: 120px;
    height: 120px;
}

.esim-text {
    text-align: left;
}

.esim-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.esim-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.esim-button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.esim-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .esim-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

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

    .esim-text h2 {
        font-size: 2rem;
    }

    .esim-text p {
        font-size: 1rem;
    }
}